Beamable · Example Payload

Beamable Live Event Score Example

Example request and response for submitting a player score to a live event via the Beamable event-players API.

Game BackendLiveOpsPlayer AccountsVirtual CurrencyInventoryLeaderboardsMatchmakingMicroservicesUnityUnrealGame EconomyAnalytics

Beamable Live Event Score Example is an example object payload from Beamable, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionapiendpointrequestresponsenotes

Example Payload

Raw ↑
{
  "title": "Beamable Live Event Score Submission Example",
  "description": "Example request and response for submitting a player score to a live event via the Beamable event-players API.",
  "api": "beamable:live-events",
  "endpoint": "PUT /object/event-players/{objectId}/score",
  "request": {
    "headers": {
      "Content-Type": "application/json",
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
      "X-DE-GAMEID": "YOUR_CID.YOUR_PID"
    },
    "pathParameters": {
      "objectId": "1234567890"
    },
    "body": {
      "score": 4250.0,
      "increment": false
    }
  },
  "response": {
    "status": 200,
    "body": {
      "result": "ok",
      "data": {
        "objectId": "1234567890",
        "score": 4250.0,
        "rank": 47
      }
    }
  },
  "notes": "The objectId path parameter matches the player's gamerTag. Set increment=true to add the score to the player's existing total rather than replace it."
}