GET api/events/getcashoutbettypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.Event.ApiCashOutBetTypeResponse
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.Event.CashOutBetType

None.

ResponseType

integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "betTypeId": 1
    },
    {
      "betTypeId": 1
    }
  ],
  "responseType": 1,
  "responseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiCashOutBetTypeResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <CashOutBetType>
      <BetTypeId>1</BetTypeId>
    </CashOutBetType>
    <CashOutBetType>
      <BetTypeId>1</BetTypeId>
    </CashOutBetType>
  </ResponseObject>
  <ResponseType>1</ResponseType>
  <ResponseMessage>sample string 2</ResponseMessage>
</ApiCashOutBetTypeResponse>