Method: accounts.list
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
認証されたユーザーのすべてのアカウントを一覧表示します。これには、ユーザーが所有するすべてのアカウントと、ユーザーが管理権限を持つすべてのアカウントが含まれます。
HTTP リクエスト
GET https://mybusinessaccountmanagement.googleapis.com/v1/accounts
この URL は gRPC Transcoding 構文を使用します。
クエリ パラメータ
パラメータ |
parentAccount |
string
省略可。直接アクセス可能なアカウントのリストを取得するアカウントのリソース名。これは組織とユーザー グループに対してのみ有効です。空の場合、認証されたユーザーに対して accounts.list が返されます。accounts/{account_id}
|
pageSize |
integer
省略可。ページあたりで取得するアカウントの数です。デフォルトおよび最大値は 20 です。
|
pageToken |
string
省略可。指定すると、アカウントの次のページが取得されます。accounts.list の呼び出しが、リクエストしたページサイズを上回る数の結果を返すと、pageToken が返されます。
|
filter |
string
省略可。返されるアカウントを制限するフィルタ。レスポンスには、フィルタに一致するエントリのみが含まれます。filter が空の場合、制約は適用されず、リクエストされたアカウントのすべてのアカウント(ページ分けあり)が取得されます。 たとえば、リクエストとフィルタ type=USER_GROUP は、ユーザー グループのみを返します。 サポートされているフィルタは type フィールドのみです。
|
リクエスト本文
リクエストの本文は空にする必要があります。
レスポンスの本文
Accounts.ListAccounts に対するレスポンス メッセージです。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{
"accounts": [
{
object (Account )
}
],
"nextPageToken": string
} |
フィールド |
accounts[] |
object (Account )
ユーザーがアクセスできるアカウントのコレクション。クエリを実行しているユーザーの個人アカウントが、除外されていない限り、常に結果の最初の項目になります。
|
nextPageToken |
string
アカウント数がリクエストしたページサイズを超えた場合、このフィールドには、後続の accounts.list の呼び出しでアカウントの次のページを取得するためのトークンが入力されます。それ以上のアカウントがない場合、このフィールドはレスポンスに含まれません。
|
認可スコープ
次の OAuth スコープが必要です。
https://www.googleapis.com/auth/business.manage
詳しくは、OAuth 2.0 の概要をご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-10-14 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-10-14 UTC。"],[[["Lists all accounts owned by or accessible to the authenticated user, including their personal account."],["Allows filtering accounts by type and specifying the parent account for retrieval."],["Supports pagination to retrieve large lists of accounts using `pageToken`."],["The response includes an array of `Account` objects and a `nextPageToken` for further results."],["Requires the `https://www.googleapis.com/auth/business.manage` OAuth scope for authorization."]]],["This API retrieves a list of accounts for an authenticated user via a `GET` request to a specified URL. The user can filter the accounts by type, specify the page size, and use a `pageToken` for pagination. An optional `parentAccount` parameter retrieves accounts directly accessible from that account. The request body must be empty, and the successful response includes an array of account objects and, if applicable, a `nextPageToken` for further pagination. This uses OAuth 2.0 with the `business.manage` scope.\n"]]