Withdrawal Requirements
Check Withdrawal Requirements
This method checks the requirements for making a withdrawal. use gateway.[msdomain]
Request (GET)
/gateway/financials/{version}/requirements/{brand_id}
Parameters:
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| version | path | string | true | The API version to use, for any version higher than 3.0, response will be async, and should be fetched from Status API. |
| brand_id | path | string | 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 | string | true | Player login session. |
Response
Status 200
{
"minimum_withdrawal": 5,
"maximum_withdrawal": "100;"
}Status 400
{
"errMsg": "invalid input - invalid brand id"
}Status 400
{
"message_format": "wagering_requirements",
"wagering": 100
}401 Response
{
"errMsg": "invalid input - invalid token"
}Status 500
{
"result": "internal server error"
}Response Parameters:
| Name | Type | Description |
|---|---|---|
| minimum_withdrawal | int | minimum amount for withdraw (in major currency). |
| maximum_withdrawal | int | maximum amount for withdraw. |