Skip to main content
POST
/
players
/
{playerId}
/
responsible-gaming
/
limits
Set an RG limit for the player
curl --request POST \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/responsible-gaming/limits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Session-ID: <x-session-id>' \
  --data '
{
  "type": "deposit_daily",
  "limit_amount": 123
}
'

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

Body

application/json
type
enum<string>
required
Available options:
deposit_daily,
deposit_weekly,
deposit_monthly,
loss_daily,
loss_weekly,
loss_monthly,
wager_daily,
session_time
limit_amount
number
required

Limit value (amount or minutes for session_time)

Response

Limit set successfully