AI-generated Key Takeaways
-
The
subscriptions.listmethod lists all subscriptions under a given app using a GET HTTP request. -
It requires a
packageNamepath parameter and optionally supportspageSizeandpageTokenquery parameters for pagination. -
The request body must be empty, and the response body contains a list of subscriptions and an optional
nextPageToken. -
This method requires the
https://www.googleapis.com/auth/androidpublisherauthorization scope.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Lists all subscriptions under a given app.
HTTP request
GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/subscriptions
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
packageName
|
Required. The parent app (package name) for which the subscriptions should be read. |
Query parameters
| Parameters | |
|---|---|
pageSize
|
The maximum number of subscriptions to return. The service may return fewer than this value. If unspecified, at most 50 subscriptions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. |
pageToken
|
A page token, received from a previous When paginating, all other parameters provided to |
showArchived
|
Deprecated: subscription archiving is not supported. |
Request body
The request body must be empty.
Response body
Response message for subscriptions.list.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"subscriptions"
:
[
{
object (
|
| Fields | |
|---|---|
subscriptions[]
|
The subscriptions from the specified app. |
nextPageToken
|
A token, which can be sent as |
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/androidpublisher

