Method: projects.services.list

Lists all Service configurations for the specified project.

Only Services which were explicitly configured using services.patch or services.batchUpdate will be returned.

HTTP request

GET https://firebaseappcheck.googleapis.com/v1beta/{parent=projects/*}/services

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The relative resource name of the parent project for which to list each associated Service, in the format:

projects/{project_number}

Query parameters

Parameters
pageSize

integer

The maximum number of Services to return in the response. Only explicitly configured services are returned.

The server may return fewer than this at its own discretion. If no value is specified or set to zero (or too large a value is specified), the server will impose its own limit.

pageToken

string

Token returned from a previous call to services.list indicating where in the set of Services to resume listing. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to services.list must match the call that provided the page token; if they do not match, the result is undefined.

Request body

The request body must be empty.

Response body

Response message for the services.list method.

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

JSON representation
{
  "services": [
    {
      object (Service)
    }
  ],
  "nextPageToken": string
}
Fields
services[]

object (Service)

The Services retrieved.

nextPageToken

string

If the result list is too large to fit in a single response, then a token is returned. If the string is empty or omitted, then this response is the last page of results.

This token can be used in a subsequent call to services.list to find the next group of Services.

Page tokens are short-lived and should not be persisted.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/cloud-platform
  • https://www.googleapis.com/auth/firebase

For more information, see the Authentication Overview.