Method: platforms.accounts.list

  • Lists a partial view of sub-accounts under a specific parent platform, retrieving account name and creation request ID.

  • Allows pagination to retrieve large lists of accounts with pageSize and pageToken parameters.

  • Requires authorization with either https://www.googleapis.com/auth/adsense or https://www.googleapis.com/auth/adsense.readonly scopes.

  • Uses a GET request to the endpoint https://adsenseplatform.googleapis.com/v1/{parent=platforms/*}/accounts, specifying the parent platform in the path.

  • Provides an empty request body and a response containing an array of accounts and a nextPageToken for pagination.

Lists a partial view of sub-accounts for a specific parent account.

HTTP request

GET https://adsenseplatform.googleapis.com/v1/{parent=platforms/*}/accounts

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Platform who parents the accounts. Format: platforms/{platform}

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of accounts to include in the response, used for paging. If unspecified, at most 10000 accounts will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000.

pageToken

string

Optional. A page token, received from a previous accounts.list call. Provide this to retrieve the subsequent page.

Request body

The request body must be empty.

Response body

Response definition for the list accounts rpc.

If successful, the response body contains data with the following structure:

JSON representation
{
  "accounts": [
    {
      object (Account)
    }
  ],
  "nextPageToken": string
}
Fields
accounts[]

object (Account)

The Accounts returned in the list response. Represented by a partial view of the Account resource, populating name and creationRequestId.

nextPageToken

string

Continuation token used to page through accounts. To retrieve the next page of the results, set the next request's "pageToken" value to this.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/adsense
  • https://www.googleapis.com/auth/adsense.readonly