Method: users.list

  • This API lists all users with access to a developer account.

  • The request uses an HTTP GET method to the specified URL which includes a required parent path parameter to identify the developer account.

  • Optional query parameters like pageSize and pageToken can be used for pagination.

  • The request body must be empty, and the successful response body contains a list of users and a nextPageToken for subsequent results.

  • The API requires the https://www.googleapis.com/auth/androidpublisher OAuth scope for authorization.

Lists all users with access to a developer account.

HTTP request

GET https://androidpublisher.googleapis.com/androidpublisher/v3/{parent=developers/*}/users

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The developer account to fetch users from. Format: developers/{developer}

Query parameters

Parameters
pageSize

integer

The maximum number of results to return. This must be set to -1 to disable pagination.

pageToken

string

A token received from a previous call to this method, in order to retrieve further results.

Request body

The request body must be empty.

Response body

A response containing one or more users with access to an account.

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

JSON representation
{
  "users": [
    {
      object (User)
    }
  ],
  "nextPageToken": string
}
Fields
users[]

object (User)

The resulting users.

nextPageToken

string

A token to pass to subsequent calls in order to retrieve subsequent results. This will not be set if there are no more results to return.

Authorization scopes

Requires the following OAuth scope:

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