AchievementConfigurations: list
Stay organized with collections
Save and categorize content based on your preferences.
Requires authorization
Returns a list of the achievement configurations in this application.
Request
HTTP request
GET https://www.googleapis.com/games/v1configuration/applications/applicationId/achievements
Parameters
Parameter name |
Value |
Description |
Path parameters |
applicationId |
string |
The application ID from the Google Play Console.
|
Optional query parameters |
maxResults |
integer |
The maximum number of resource configurations to return in the response, used for paging. For any response, the actual number of resources returned may be less than the specified maxResults .
Acceptable values are 1 to 200 , inclusive.
|
pageToken |
string |
The token returned by the previous request.
|
Authorization
This request requires authorization with the following scope (read more about authentication and authorization).
Scope |
https://www.googleapis.com/auth/androidpublisher |
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{
"kind": "gamesConfiguration#achievementConfigurationListResponse",
"nextPageToken": string,
"items": [
achievementConfigurations Resource
]
}
Property name |
Value |
Description |
Notes |
kind |
string |
Uniquely identifies the type of this resource. Value is always the fixed string games#achievementConfigurationListResponse . |
|
nextPageToken |
string |
The pagination token for the next page of results. |
|
items[] |
list |
The achievement configurations. |
|
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-10-28 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-10-28 UTC."],[],[],null,["# AchievementConfigurations: list\n\n**Requires [authorization](#auth)**\n\nReturns a list of the achievement configurations in this application.\n\nRequest\n-------\n\n### HTTP request\n\n```\nGET https://www.googleapis.com/games/v1configuration/applications/applicationId/achievements\n```\n\n### Parameters\n\n| Parameter name | Value | Description |\n|-----------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| **Path parameters** |||\n| `applicationId` | `string` | The application ID from the Google Play Console. |\n| **Optional query parameters** |||\n| `maxResults` | `integer` | The maximum number of resource configurations to return in the response, used for paging. For any response, the actual number of resources returned may be less than the specified `maxResults`. Acceptable values are `1` to `200`, inclusive. |\n| `pageToken` | `string` | The token returned by the previous request. |\n\n### Authorization\n\nThis request requires authorization with the following scope ([read more about authentication and authorization](/accounts/docs/OAuth2)).\n\n| Scope |\n|----------------------------------------------------|\n| `https://www.googleapis.com/auth/androidpublisher` |\n\n### Request body\n\nDo not supply a request body with this method.\n\nResponse\n--------\n\nIf successful, this method returns a response body with the following structure:\n\n```objective-c\n{\n \"kind\": \"gamesConfiguration#achievementConfigurationListResponse\",\n \"nextPageToken\": string,\n \"items\": [\n achievementConfigurations Resource\n ]\n}\n```\n\n| Property name | Value | Description | Notes |\n|-----------------|----------|-------------------------------------------------------------------------------------------------------------------------------|-------|\n| `kind` | `string` | Uniquely identifies the type of this resource. Value is always the fixed string `games#achievementConfigurationListResponse`. | |\n| `nextPageToken` | `string` | The pagination token for the next page of results. | |\n| `items[]` | `list` | The achievement configurations. | |"]]