GET api/punters/{punterId}/dailyWithdrawalLimits
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.PunterDailyWithdrawalLimitDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.PunterDailyWithdrawalLimitDetail |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"clientWithdrawalsRemaining": 1,
"canClientWithdrawal": true,
"withdrawalNotification": true
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfPunterDailyWithdrawalLimitDetail xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<ClientWithdrawalsRemaining>1</ClientWithdrawalsRemaining>
<CanClientWithdraw>true</CanClientWithdraw>
<ShowWithdrawalNotification>true</ShowWithdrawalNotification>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfPunterDailyWithdrawalLimitDetail>