POST api/punters/verifyClientBankDetails
Request Information
URI Parameters
None.
Body Parameters
BO.BETRequestObjects.Punter.VerifyClientBankDetailsApiRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PunterId | integer |
None. |
|
| BankId | integer |
None. |
|
| BankAccountNumber | string |
None. |
|
| BankBranchCode | string |
None. |
|
| BankAccountHolder | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"punterId": 1,
"bankId": 2,
"bankAccountNumber": "sample string 3",
"bankBranchCode": "sample string 4",
"bankAccountHolder": "sample string 5"
}
application/xml, text/xml
Sample:
<VerifyClientBankDetailsApiRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PunterId>1</PunterId> <BankId>2</BankId> <BankAccountNumber>sample string 3</BankAccountNumber> <BankBranchCode>sample string 4</BankBranchCode> <BankAccountHolder>sample string 5</BankAccountHolder> </VerifyClientBankDetailsApiRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.BETRequestObjects.Punter.VerifyClientBankDetailsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.BETRequestObjects.Punter.VerifyClientBankDetailsResponse |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"bankingDetailsVerified": true
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfVerifyClientBankDetailsResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<BankingDetailsVerified>true</BankingDetailsVerified>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfVerifyClientBankDetailsResponse>