post
https://partners-api.forge.gg/partner/event
Ingest a custom in-game player events to Forge. Use this endpoint for any event that does not fit the dedicated playtime, achievement, or login endpoints — e.g. item_purchased,level_completed, match_ended. Partner and game details are identified automatically using the API key used to invoke the API. The API supports batch inserts to reduce the number of calls made to the service.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Notes:
- To ingest batch records, ensure each record follows the required body structure defined below and that all records are wrapped in a single array.
- Each record must include the below user identifier:
{
"account_type": "<platform>",
"id": "<account_id>"
}
Example Input
{
"user": {
"account_type": "steam",
"id": "76561198087147950"
},
"event": "level_up",
"metadata": {
"level": 10
}
}