Events: resetMultipleForAllPlayers
Stay organized with collections
Save and categorize content based on your preferences.
Requires authorization
Resets events with the given IDs for all players. This method is only available to user accounts for your developer console. Only draft events may be reset.
Request
HTTP request
POST https://www.googleapis.com/games/v1management/events/resetMultipleForAllPlayers
Authorization
This request requires authorization with the following scope (read more about authentication and authorization).
Scope |
https://www.googleapis.com/auth/games |
Request body
In the request body, supply data with the following structure:
{
"kind": "gamesManagement#eventsResetMultipleForAllRequest",
"event_ids": [
string
]
}
Property name |
Value |
Description |
Notes |
kind |
string |
Uniquely identifies the type of this resource. Value is always the fixed string gamesManagement#eventsResetMultipleForAllRequest . |
|
event_ids[] |
list |
The IDs of events to reset. |
|
Response
If successful, this method returns an empty response body.
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,["# Events: resetMultipleForAllPlayers\n\n**Requires [authorization](#auth)**\n\nResets events with the given IDs for all players. This method is only available to user accounts for your developer console. Only draft events may be reset.\n\nRequest\n-------\n\n### HTTP request\n\n```\nPOST https://www.googleapis.com/games/v1management/events/resetMultipleForAllPlayers\n```\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/games` |\n\n### Request body\n\nIn the request body, supply data with the following structure:\n\n```scdoc\n{\n \"kind\": \"gamesManagement#eventsResetMultipleForAllRequest\",\n \"event_ids\": [\n string\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 `gamesManagement#eventsResetMultipleForAllRequest`. | |\n| `event_ids[]` | `list` | The IDs of events to reset. | |\n\nResponse\n--------\n\nIf successful, this method returns an empty response body."]]