POST api/punters/{punterId}/updatePunterBankingCompliancy
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | string |
None. |
Body Parameters
BO.BETRequestObjects.Punter.ApiBankingCompliance| Name | Description | Type | Additional information |
|---|---|---|---|
| BankingCompliance | boolean |
None. |
|
| PunterId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"bankingCompliance": true,
"punterId": 2
}
application/xml, text/xml
Sample:
<ApiBankingCompliance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <BankingCompliance>true</BankingCompliance> <PunterId>2</PunterId> </ApiBankingCompliance>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.Punter.ApiUpdateBankingComplianceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseType | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseObject | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseType": 1,
"responseMessage": "sample string 2",
"responseObject": true
}
application/xml, text/xml
Sample:
<ApiUpdateBankingComplianceResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ResponseType>1</ResponseType> <ResponseMessage>sample string 2</ResponseMessage> <ResponseObject>true</ResponseObject> </ApiUpdateBankingComplianceResponse>