Limits Metadata
This method retrieves options for player limits. Use this method to populate a page that enables you to edit the limits. use gateway.[msdomain]
Request (GET)
/gateway/limits/{version}/meta-data/{brand_id}/{currency}
Parameters:
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| version | path | string | true | The API version to use. |
| brand_id | path | int | true | The ID of the casino. If a brand_id is not provided, all message formats will be fetched from default storage. |
| x-auth-token | path | string | true | Player login session. |
| currency | path | string | true | ISO3 currency code. |
Response
Status 200
{
"deposit": {
"amount": "no_limit",
"period": "no_limit"
},
"bet": {
"amount": "1000",
"period": "week"
},
"loss": {
"amount": "10000",
"period": "month"
},
"limit_periods": [
"day",
"week",
"month",
"no_limit"
],
"reality_check": {
"period": "undefined",
"options": [
"15_min",
"30_min",
"60_min",
"no_limit"
]
}
}Status 400
{
"errMsg": "invalid input - invalid brand id"
}Status 401
{
"errMsg": "invalid input - invalid token"
}Status 500
{
"result": "internal server error"
}