POST api/punters/validatepunterwithdrawal

Request Information

URI Parameters

None.

Body Parameters

BO.BETResponseObjects.Punter.PunterValidateWithdrawalRequest
NameDescriptionTypeAdditional information
ClientID

integer

None.

WithdrawalAmount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "clientID": 1,
  "withdrawalAmount": 2.0
}

application/xml, text/xml

Sample:
<PunterValidateWithdrawalRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ClientID>1</ClientID>
  <WithdrawalAmount>2</WithdrawalAmount>
</PunterValidateWithdrawalRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.BETResponseObjects.Punter.PunterWithdrawalResponse
NameDescriptionTypeAdditional information
ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<PunterWithdrawalResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</PunterWithdrawalResponse>