Regulations
Regulations Endpoints
This section will display all available endpoints to get regulations data.
This section will display all available endpoints to get regulations data.
This method retrieves the default regulation configuration for a casino. use gateway.[msdomain]
/gateway/currencies/{version}/currencyByIP/{brand_id}| 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. |
Status 200
{
"DEFAULT_REGULATION": [
"responsible_gaming",
"limits",
"deposit_message",
"self_exclusion",
"timeout",
"account_closure",
"login",
"swap_limits",
"gamstop",
"reality_check",
"time_limit"
]
}Status 400
{
"errMsg": "invalid input - invalid brand id"
}Status 500
{
"result": "internal server error"
}| Name | Description |
|---|---|
| DEFAULT_REGULATION | array containing all actions available for brand. |
This method returns information about a player’s actions for regulation purposes.
If no regulations for the player and brand are found, returns "default". use gateway.[msdomain]
/gateway/regulations/{version}/configuration/{brand_id}| 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 | header | int | false | Player login session. |
Status 200
[
"login",
"inactivity",
"deposit_message"
]Status 400
{
"errMsg": "invalid input - invalid brand id"
}Status 500
{
"result": "internal server error"
}| Name | Description |
|---|---|
| array | Array containing all actions for this player. |