Method: accounts.apps.list

  • The accounts.apps.list method lists apps under a given account using a GET HTTP request.

  • The request requires a parent path parameter specifying the account, and optionally supports pageSize and pageToken query parameters for pagination.

  • The request body must be empty, while the successful response body contains a list of App objects and an optional nextPageToken.

  • This method requires the https://www.googleapis.com/auth/checks OAuth scope for authorization.

Lists the apps under the given account.

HTTP request

GET https://checks.googleapis.com/v1alpha/{parent=accounts/*}/apps

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The parent account.

Example: accounts/123

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of results to return.

The server may further constrain the maximum number of results returned in a single page. If unspecified, the server will decide the number of results to be returned.

pageToken

string

Optional. A page token received from a previous apps.list call.

Provide this to retrieve the subsequent page.

Request body

The request body must be empty.

Response body

The response message for AccountService.ListApps.

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

JSON representation
{
  "apps": [
    {
      object (App)
    }
  ],
  "nextPageToken": string
}
Fields
apps[]

object (App)

The apps.

nextPageToken

string

A token which can be sent as pageToken to retrieve the next page.

If this field is omitted, there are no subsequent pages.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/checks

For more information, see the OAuth 2.0 Overview.