Googleapis Gamesconfiguration
Googleapis Gamesconfiguration is a connector for the Google Play Games configuration API used to manage game service settings such as achievements and leaderboards.
- Base URL:
https://gamesconfiguration.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
gamesconfiguration_achievementconfigurations_get— GET /games/v1configuration/achievements/{achievementId} — Retrieves the metadata of the achievement configuration with the given ID.gamesconfiguration_achievementconfigurations_lis— GET /games/v1configuration/applications/{applicationId}/achievements — Returns a list of the achievement configurations in this application.gamesconfiguration_leaderboardconfigurations_lis— GET /games/v1configuration/applications/{applicationId}/leaderboards — Returns a list of the leaderboard configurations in this application.gamesconfiguration_leaderboardconfigurations_get— GET /games/v1configuration/leaderboards/{leaderboardId} — Retrieves the metadata of the leaderboard configuration with the given ID.gamesconfiguration_achievementconfigurations_upd— PUT /games/v1configuration/achievements/{achievementId} — Update the metadata of the achievement configuration with the given ID.gamesconfiguration_achievementconfigurations_del— DELETE /games/v1configuration/achievements/{achievementId} — Delete the achievement configuration with the given ID.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: gamesconfiguration_achievementconfigurations_get
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: gamesconfiguration_achievementconfigurations_get, gamesconfiguration_achievementconfigurations_lis, gamesconfiguration_leaderboardconfigurations_lis, gamesconfiguration_leaderboardconfigurations_get, gamesconfiguration_achievementconfigurations_upd, gamesconfiguration_achievementconfigurations_del |
achievementId |
string | no | — | Path parameter achievementId (required by some operations). |
applicationId |
string | no | — | Path parameter applicationId (required by some operations). |
leaderboardId |
string | no | — | Path parameter leaderboardId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |