Skip to main content

Configs

Get Player status

GET v1/player/status
  • Authorization: Bearer <JWT_TOKEN>
  • Content-Type: application/json
  • X-Tenant-ID: <Tenant_ID>
  • X-Game-Id: <Game Id>
  • X-Player-Id: <Player ID>
Note: Pass Tenant ID, Game ID and Player Id in header for now

Response

{
  "isPayer": {
    "value": true,
    "defaultValue": false,
    "expiredAt": null
  }
}

Curl

curl -X GET "https://api.gameramp.com/v1/player/status" \
  -H "Authorization: Bearer <JWT_TOKEN>" \
  -H "X-Tenant-Id: Tenant ID" \
  -H "X-Game-Id: Game Id" \
  -H "X-Player-Id: Player"
Response:
{"isPayer":{"value":true,"defaultValue":false,"expiredAt":null}}