POST api/betting/combinations

Request Information

URI Parameters

None.

Body Parameters

BO.BETRequestObjects.Betting.CombinationsRequestFilter
NameDescriptionTypeAdditional information
BetTypeGroupId

integer

None.

SubBetTypeId

integer

None.

BetTypeRuleId

integer

None.

Legs

byte

None.

OpenExoticSelections

Collection of Collection of byte

None.

Request Formats

application/json, text/json

Sample:
{
  "betTypeGroupId": 1,
  "subBetTypeId": 2,
  "betTypeRuleId": 3,
  "legs": 64,
  "openExoticSelections": [
    [
      64,
      64
    ],
    [
      64,
      64
    ]
  ]
}

application/xml, text/xml

Sample:
<CombinationsRequestFilter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BetTypeGroupId>1</BetTypeGroupId>
  <SubBetTypeId>2</SubBetTypeId>
  <BetTypeRuleId>3</BetTypeRuleId>
  <Legs>64</Legs>
  <OpenExoticSelections>
    <ArrayOfUnsignedByte>
      <unsignedByte>64</unsignedByte>
      <unsignedByte>64</unsignedByte>
    </ArrayOfUnsignedByte>
    <ArrayOfUnsignedByte>
      <unsignedByte>64</unsignedByte>
      <unsignedByte>64</unsignedByte>
    </ArrayOfUnsignedByte>
  </OpenExoticSelections>
</CombinationsRequestFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.MetaData.Betting.ApiCombinationsResponse
NameDescriptionTypeAdditional information
ResponseObject

integer

None.

ResponseType

integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": 1,
  "responseType": 2,
  "responseMessage": "sample string 3"
}

application/xml, text/xml

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