Achievements: increment

Increments the steps of the achievement with the given ID for the currently authenticated player. Try it now.

Request

HTTP request

POST https://www.googleapis.com/games/v1/achievements/achievementId/increment

Parameters

Parameter name Value Description
Path parameters
achievementId string The ID of the achievement used by this method.
Required query parameters
stepsToIncrement integer The number of steps to increment.
Optional query parameters
requestId long A randomly generated numeric ID for each request specified by the caller. This number is used at the server to ensure that the request is handled correctly across retries.

Authorization

This request requires authorization with the following scope:

Scope
https://www.googleapis.com/auth/games

For more information, see the authentication and authorization page.

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": "games#achievementIncrementResponse",
  "currentSteps": integer,
  "newlyUnlocked": boolean
}
Property name Value Description Notes
kind string Uniquely identifies the type of this resource. Value is always the fixed string games#achievementIncrementResponse.
currentSteps integer The current steps recorded for this incremental achievement.
newlyUnlocked boolean Whether the current steps for the achievement has reached the number of steps required to unlock.

Try it!

Use the APIs Explorer below to call this method on live data and see the response.