Method: brands.list

Lists all the brands accessible to the user making the request.

HTTP request

GET https://businesscommunications.googleapis.com/v1/brands

The URL uses gRPC Transcoding syntax.

Query parameters

Parameters
pageSize

integer

Specify the maximum number of results to be returned by the server. The server may further constrain the maximum number of results returned in a single page. If the pageSize is 0, the server will decide the number of results to be returned.

pageToken

string

The nextPageToken value returned from a previous List request, if any.

Request body

The request body must be empty.

Response body

A list of brands.

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

JSON representation
{
  "brands": [
    {
      object (Brand)
    }
  ],
  "nextPageToken": string
}
Fields
brands[]

object (Brand)

List of brand information.

nextPageToken

string

The pagination token to retrieve the next page of results. If the value is "", it means no further results for the request.