Heroic Labs · Example Payload

Heroiclabs Authenticate Email Example

Game BackendMultiplayerReal-TimeWebSocketMatchmakingLeaderboardsSocial GamingOpen SourceLiveOpsgRPC

Heroiclabs Authenticate Email 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": "Authenticate with email and password",
  "request": {
    "method": "POST",
    "path": "/v2/account/authenticate/email",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "email": "player@example.com",
      "password": "s3cur3p@ssword",
      "username": "player1",
      "create": true
    }
  },
  "response": {
    "status": 200,
    "body": {
      "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
      "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
      "created": true
    }
  }
}