GET api/punters/{punterId}/getclientcahsendlimits

Request Information

URI Parameters

NameDescriptionTypeAdditional information
punterId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.BETRequestObjects.Punter.PunterCashSendLimitsResponse
NameDescriptionTypeAdditional information
ResponseObject

BO.BETRequestObjects.Punter.PunterCashSendLimitsResponse

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "dailyLimit": 1.0,
    "remainingDailyLimit": 2.0,
    "monthlyLimit": 3.0,
    "remainingMonthlyLimit": 4.0
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfPunterCashSendLimitsResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <DailyLimit>1</DailyLimit>
    <RemainingDailyLimit>2</RemainingDailyLimit>
    <MonthlyLimit>3</MonthlyLimit>
    <RemainingMonthlyLimit>4</RemainingMonthlyLimit>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfPunterCashSendLimitsResponse>