Heroic Labs · Example Payload

Heroiclabs Create Match Example

Game BackendMultiplayerReal-TimeWebSocketMatchmakingLeaderboardsSocial GamingOpen SourceLiveOpsgRPC

Heroiclabs Create Match 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": "Create a realtime match",
  "request": {
    "method": "POST",
    "path": "/v2/match",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {}
  },
  "response": {
    "status": 200,
    "body": {
      "match": {
        "match_id": "m1a2t3c4h5...",
        "authoritative": false,
        "label": "",
        "size": 1
      }
    }
  }
}