Heroic Labs · Example Payload

Heroiclabs Send Event Example

Game BackendMultiplayerReal-TimeWebSocketMatchmakingLeaderboardsSocial GamingOpen SourceLiveOpsgRPC

Heroiclabs Send Event Example is an example object payload from Heroic Labs, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "Send a game event",
  "request": {
    "method": "POST",
    "path": "/v2/event",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "events": [
        {
          "name": "purchase",
          "properties": {
            "item": "sword",
            "cost": "100"
          },
          "timestamp": "2026-06-12T00:00:00Z",
          "external": false
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {}
  }
}