Query all of the bet limit for specified currency.
ParametersName | Description | Type and Limit | Required? |
---|---|---|---|
method | Must be 'QueryBetLimit' | String (32) | Y |
Key | Secret key | String (32) | Y |
Time | Current time in 'yyyyMMdddHHmmss' format | DateTime | Y |
Currency | Currency: CNY USD Refer to Supported currencies | String (4) | Y |
Name | Description | Type and Limit | Required? |
---|---|---|---|
BetLimitList | BetLimit lists | XML Structure | Y |
ErrorMsgId | Error message: 0: Success 114: Currency not exist | Byte | Y |
ErrorMsg | Error message detail | String | Y |
Name | Description | Type and Limit | Required? |
---|---|---|---|
RuleID | ID of the bet limit | Int64 | Y |
Min | Minimum of the limit | Int | Y |
Max | Maximum of the limit | Int | Y |
BetLimit structure
1 2 3 4 5 6 7 8 9 10 11 12 |
<BetLimitList> <BetLimit> <RuleID>1</RuleID> <Min>5</Min> <Max>500</Max> </BetLimit> <BetLimit> <RuleID>2</RuleID> <Min>100</Min> <Max>5000</Max> </BetLimit> </BetLimitList> |