Skip to main content
GET
/
players
/
{playerId}
/
responsible-gaming
Get player responsible gaming status
curl --request GET \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/responsible-gaming \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Session-ID: <x-session-id>'
{
  "player_id": "<string>",
  "rg_closed": true,
  "closure": {
    "type": "cooloff",
    "start_date": "2023-11-07T05:31:56Z",
    "end_date": "2023-11-07T05:31:56Z",
    "reason": "<string>",
    "can_reactivate": true
  },
  "limits": [
    {
      "type": "deposit_daily",
      "limit_amount": 123,
      "used_amount": 123,
      "remaining_amount": 123,
      "period_start": "2023-11-07T05:31:56Z",
      "period_end": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Bearer token. For this demo, any non-empty string is accepted.

Headers

X-Session-ID
string
required

Path Parameters

playerId
string
required

Response

RG status retrieved successfully

player_id
string
rg_closed
boolean

Whether player is RG restricted

closure
object
limits
object[]