GET api/punters/{punterId}/details/banking/lite
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.GetBankDetailsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.GetBankDetailsResult |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"clientID": 1,
"bankID": 2,
"bankAccountNumber": "sample string 3",
"bankAccountHolder": "sample string 4",
"bankBranchCode": "sample string 5",
"bankSwiftCode": "sample string 6",
"bankName": "sample string 7",
"bankingCompliant": true,
"hasFailedBankingVerification": true
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfGetBankDetailsResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<ClientID>1</ClientID>
<BankID>2</BankID>
<BankAccountNumber>sample string 3</BankAccountNumber>
<BankAccountHolder>sample string 4</BankAccountHolder>
<BankBranchCode>sample string 5</BankBranchCode>
<BankSwiftCode>sample string 6</BankSwiftCode>
<BankName>sample string 7</BankName>
<BankingCompliant>true</BankingCompliant>
<HasFailedBankingVerification>true</HasFailedBankingVerification>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfGetBankDetailsResult>