POST api/punters/clientWithdrawalDetails
Request Information
URI Parameters
None.
Body Parameters
BO.BETRequestObjects.Punter.ClientWithdrawalDetailsApiRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| BankId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"clientId": 1,
"bankId": 2
}
application/xml, text/xml
Sample:
<ClientWithdrawalDetailsApiRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ClientId>1</ClientId> <BankId>2</BankId> </ClientWithdrawalDetailsApiRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.ClientWithdrawalDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.ClientWithdrawalDetails |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"clientFICAComplaint": true,
"completedAmount": 2.0,
"pendingAmount": 3.0,
"bankName": "sample string 4",
"isOnline": true,
"canClientWithdraw": true,
"withdrawalDelayHours": 7
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfClientWithdrawalDetails xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<ClientFICAComplaint>true</ClientFICAComplaint>
<CompletedAmount>2</CompletedAmount>
<PendingAmount>3</PendingAmount>
<BankName>sample string 4</BankName>
<IsOnline>true</IsOnline>
<CanClientWithdraw>true</CanClientWithdraw>
<WithdrawalDelayHours>7</WithdrawalDelayHours>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfClientWithdrawalDetails>