Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Media / Google / Google Play Games Services Management API
Google Play Games Services Management API logo

Google Play Games Services Management API

Browse all Google APIs
✓ Official Vendor SpecMediaContent Deliveryoauth218 EndpointsREST

For Agents

Reset achievements, scores, events, and quests for tester accounts, and manage hidden players. Built for game QA, live ops, and moderation workflows.

Use for: Reset a single achievement for my tester account, Reset all achievements for every tester of my game, Hide a player from leaderboards in my application, List all hidden players for my game

Not supported: Does not configure achievements or leaderboards, award progression, or modify real player data — use the Configuration API for setup and the Games API for runtime; this API only resets tester state and manages hidden players.

The Google Play Games Services Management API manages player progression state for testing, moderation, and support workflows. It resets achievements, scores, events, and quests for individual test accounts or for all tester accounts at once, and lets developers hide or unhide players within an application. Use it from QA pipelines and live ops tools, never against real player data.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Google Play Games Services Management API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Google Play Games Services Management API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Google Play Games Services Management API.

Reset a single achievement for the current tester account

Reset all achievements for every tester of an application

Reset multiple specific achievements for all testers in one call

Reset event progress and quest state for testers

Hide a player from leaderboards and social features for an application

Unhide a previously hidden player

List players currently hidden in an application

Use Cases

Patterns agents use Google Play Games Services Management API for, with concrete tasks.

★ QA Account Reset Between Test Runs

Game QA teams need a clean baseline of achievements and scores before each regression pass. The Management API resets a single achievement, all achievements, or selected achievements for the current tester account or all testers, allowing automated test suites to start from a known state. This removes the need for engineers to wipe state manually in the Play Console.

Call POST /games/v1management/achievements/reset before each test run to clear all achievements for the current tester account.

Moderate Disruptive Players

Live games occasionally need to remove abusive players from leaderboards and social features. The hidden players endpoints let support staff hide a player by id within an application, removing them from leaderboard windows and friend listings, and unhide them later if appropriate. The action is reversible and scoped to the application.

Call POST /games/v1management/applications/{applicationId}/players/hidden/{playerId} to hide an abusive player and confirm with GET on the hidden players list.

Pre-Release Reset Across All Testers

Before a release candidate ships to closed testers, studios reset all progression so testers experience the new build from zero. The resetAllForAllPlayers endpoints reset achievements, events, and quests for every tester account at once, enabling clean regression and balance verification.

Call POST /games/v1management/achievements/resetAllForAllPlayers, /games/v1management/events/resetAllForAllPlayers, and the equivalent quests endpoint before promoting the build.

Agent-Run Test Hygiene

An AI agent embedded in a CI workflow can reset achievement and event state on tester accounts between runs through Jentic. The agent searches for the reset operation, loads its schema, and executes it as part of the pipeline, freeing engineers from writing custom OAuth glue.

Use Jentic to search 'reset play games achievements', load the achievements/reset schema, and execute it as part of the pipeline before integration tests run.

Key Endpoints

18 endpoints — the google play games services management api manages player progression state for testing, moderation, and support workflows.

METHOD

PATH

DESCRIPTION

POST

/games/v1management/achievements/reset

Reset all achievements for the current tester

POST

/games/v1management/achievements/resetAllForAllPlayers

Reset all achievements across all testers

POST

/games/v1management/achievements/resetMultipleForAllPlayers

Reset selected achievements for all testers

POST

/games/v1management/events/reset

Reset event progress for the current tester

GET

/games/v1management/applications/{applicationId}/players/hidden

List hidden players

POST

/games/v1management/applications/{applicationId}/players/hidden/{playerId}

Hide a player

DELETE

/games/v1management/applications/{applicationId}/players/hidden/{playerId}

Unhide a player

POST

/games/v1management/achievements/reset

Reset all achievements for the current tester

POST

/games/v1management/achievements/resetAllForAllPlayers

Reset all achievements across all testers

POST

/games/v1management/achievements/resetMultipleForAllPlayers

Reset selected achievements for all testers

POST

/games/v1management/events/reset

Reset event progress for the current tester

GET

/games/v1management/applications/{applicationId}/players/hidden

List hidden players

POST

/games/v1management/applications/{applicationId}/players/hidden/{playerId}

Hide a player

DELETE

/games/v1management/applications/{applicationId}/players/hidden/{playerId}

Unhide a player

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Developer OAuth credentials are stored encrypted in the Jentic vault. Agents receive scoped tokens for the games scope and can only operate on tester accounts of the authorised application.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'reset play games achievements') and Jentic returns the matching reset or hidden-players operation with the right path parameters.

Time to first call

Time to first call

Direct integration: 1-2 days for OAuth, tester account setup, and reset orchestration. Through Jentic: under 30 minutes.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Google Play Games Services API

→

Awards achievements and submits scores against the configurations being reset here.

Use the Games API for runtime player progression; this Management API for resets and moderation.

Complementary

Google Play Games Services Publishing API

→

Defines the achievements and leaderboards that this API resets.

Use Configuration for definitions; this Management API for resets after they are defined.

Complementary

Google Play Developer API

→

Manages release tracks where tester accounts are configured.

Use Android Publisher to manage testers and tracks; this Management API to reset their state.

FAQs

Specific to using Google Play Games Services Management API through Jentic.

What authentication does the Play Games Services Management API use?

It uses Google OAuth 2.0 with the games scope, but most endpoints only function for tester accounts associated with the developer's application. Through Jentic, OAuth credentials live encrypted in the vault.

Can I reset a real player's achievements with this API?

No. Reset endpoints only work for tester accounts configured in the Play Console for the application. Calls against real player accounts return errors and have no effect.

What are the rate limits for the Play Games Services Management API?

Google enforces standard per-project quotas, typically a few hundred requests per minute. Reset operations across all testers should be paced and retried on HTTP 429.

How do I hide a player from a leaderboard through Jentic?

Search Jentic for 'hide a play games player', load the schema for POST /games/v1management/applications/{applicationId}/players/hidden/{playerId}, and execute it for the target playerId.

Is the Play Games Services Management API free?

Yes, the API itself has no cost. A Google Play developer account and a configured application are required to use it.

Can I configure achievements with this API?

No. Achievement and leaderboard definitions are managed via the Play Games Services Publishing API. This API only manages player state and moderation.

GET STARTED

Start building with Google Play Games Services Management API

Explore with Jentic
View OpenAPI Document