AI-generated Key Takeaways
-
The
accounts.apps.listmethod lists apps under a given account using a GET HTTP request. -
The request requires a
parentpath parameter specifying the account, and optionally supportspageSizeandpageTokenquery parameters for pagination. -
The request body must be empty, while the successful response body contains a list of
Appobjects and an optionalnextPageToken. -
This method requires the
https://www.googleapis.com/auth/checksOAuth scope for authorization.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
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 |
Required. The parent account. Example: |
Query parameters
| Parameters | |
|---|---|
page |
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. |
page |
Optional. A page token received from a previous 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 ( |
| Fields | |
|---|---|
apps[] |
The apps. |
next |
A token which can be sent as 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.