POST api/punters/{punterId}/checklimit
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| punterId | integer |
Required |
Body Parameters
BO.BETRequestObjects.Punter.PunterLimitsFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| PunterId | integer |
None. |
|
| PunterTransactionTypeId | integer |
None. |
|
| Amount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"punterId": 1,
"punterTransactionTypeId": 2,
"amount": 3.0
}
application/xml, text/xml
Sample:
<PunterLimitsFilter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PunterId>1</PunterId> <PunterTransactionTypeId>2</PunterTransactionTypeId> <Amount>3</Amount> </PunterLimitsFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Models.Punter.PunterLimitModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Models.Punter.PunterLimitModel |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"success": true,
"message": "sample string 1"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfPunterLimitModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<Success>true</Success>
<Message>sample string 1</Message>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfPunterLimitModel>