Method: applications.deviceTierConfigs.list
Stay organized with collections
Save and categorize content based on your preferences.
Returns created device tier configs, ordered by descending creation time.
HTTP request
GET https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/deviceTierConfigs
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
packageName |
string
Package name of the app.
|
Query parameters
Parameters |
pageSize |
integer
The maximum number of device tier configs to return. The service may return fewer than this value. If unspecified, at most 10 device tier configs will be returned. The maximum value for this field is 100; values above 100 will be coerced to 100. Device tier configs will be ordered by descending creation time.
|
pageToken |
string
A page token, received from a previous deviceTierConfigs.list call. Provide this to retrieve the subsequent page.
|
Request body
The request body must be empty.
Response body
Response listing existing device tier configs.
If successful, the response body contains data with the following structure:
JSON representation |
{
"deviceTierConfigs": [
{
object (DeviceTierConfig )
}
],
"nextPageToken": string
} |
Fields |
deviceTierConfigs[] |
object (DeviceTierConfig )
Device tier configs created by the developer.
|
nextPageToken |
string
A token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.
|
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/androidpublisher
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-17 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-17 UTC."],[[["Returns a list of device tier configs for a specified Android app, ordered by descending creation time."],["Allows for pagination to retrieve large lists of device tier configs."],["Requires authorization with the `https://www.googleapis.com/auth/androidpublisher` scope."],["Request body should be empty, and the response includes a list of device tier configs and a token for pagination."]]],["This API retrieves a list of device tier configurations for a specified Android app. It uses a `GET` request to a URL with the app's package name as a path parameter. Optional query parameters `pageSize` (up to 100) and `pageToken` facilitate pagination. The request body is empty. The response, ordered by creation time, is a JSON object containing an array of `deviceTierConfigs` and a `nextPageToken` for further pages. It needs `androidpublisher` authorization scope.\n"]]