Method: projects.subscriptions.list

Lists matching subscriptions.

HTTP request

GET https://pubsub.googleapis.com/v1/{project}/subscriptions

Path parameters

Parameters
project

string

Required. The name of the project in which to list subscriptions. Format is projects/{project-id}.

Query parameters

Parameters
pageSize

integer

Optional. Maximum number of subscriptions to return.

pageToken

string

Optional. The value returned by the last ListSubscriptionsResponse; indicates that this is a continuation of a prior subscriptions.list call, and that the system should return the next page of data.

Request body

The request body must be empty.

Response body

Response for the subscriptions.list method.

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

JSON representation
{
  "subscriptions": [
    {
      object (Subscription)
    }
  ],
  "nextPageToken": string
}
Fields
subscriptions[]

object (Subscription)

Optional. The subscriptions that match the request.

nextPageToken

string

Optional. If not empty, indicates that there may be more subscriptions that match the request; this value should be passed in a new ListSubscriptionsRequest to get more subscriptions.

Authorization scopes

Requires one of the following OAuth scopes:

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

For more information, see the Authentication Overview.