Appearance
Get BetLimits GET
GET
Optional
Get bet limit setting symbol
Authorization
Transfer uses Basic Authentication with your agent credentials. (Authentication)
HTTP Request
GET {{ API_URL }}/betLimitsV2?productId={{ productId }}&username={{ username }}¤cy={{ currency }}
Content Type
Type: application/json
Parameter Description
Property | Type | Required | Description |
---|---|---|---|
username | string | Required | Member username |
productId | string | Required | Product ID (Ref. Product List)) (Example : SEXY ) |
currency | string | Required | ISO 4217 currency code |
Response Description
Property | Type | Required | Description |
---|---|---|---|
reqId | string | Required | Unique reference for each request |
code | number | Required | Response status |
message | string | Required | Additional information on response status |
data | BetLimits[] | Required | List of bet limits |
Bet limits response
Property | Type | Required | Description |
---|---|---|---|
productId | string | Required | Product ID (Ex. PRETTY, SEXY, etc) |
BetLimit | LimitData[] | Required | Either betLimit or winLimit |
Limit data
Property | Type | Required | Description |
---|---|---|---|
limit | number | Required | Limit parameter, use this value to set in limit parameter when call /logIn . |
Max | number | Required | Maximum wager for player. |
Min | number | Required | Minimum wager for player. |
JSON response example:
json
{
"reqId": "395e9c4d-be1f-403d-b58a-e3e1ce4b7250",
"code": 0,
"message": "Success",
"data": [
{
"productId": "SEXY",
"BetLimit": [
{
"limit": 1,
"Min": 5,
"Max": 2000
},
{
"limit": 2,
"Min": 50,
"Max": 5000
},
{
"limit": 3,
"Min": 100,
"Max": 20000
}
]
}
]
}