{ "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." }