GET api/betting/luckynumbers/gridruleset?eventId={eventId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

integer

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.Models.Betting.LuckyNumbersGridRuleSetModel
NameDescriptionTypeAdditional information
ResponseObject

BO.Models.Betting.LuckyNumbersGridRuleSetModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "ballsToSelect": [
      {
        "marketId": 1,
        "totalBallsToPick": 2,
        "sets": [
          1,
          2
        ]
      },
      {
        "marketId": 1,
        "totalBallsToPick": 2,
        "sets": [
          1,
          2
        ]
      }
    ],
    "ballSetRanges": {
      "range": {
        "start": 1,
        "end": 2
      },
      "extraRange": {
        "start": 1,
        "end": 2
      },
      "sharingBalls": true,
      "extraBallsDrawn": 2
    }
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfLuckyNumbersGridRuleSetModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <BallsToSelect>
      <BallsToPickSet>
        <MarketId>1</MarketId>
        <TotalBallsToPick>2</TotalBallsToPick>
        <Sets>
          <int>1</int>
          <int>2</int>
        </Sets>
      </BallsToPickSet>
      <BallsToPickSet>
        <MarketId>1</MarketId>
        <TotalBallsToPick>2</TotalBallsToPick>
        <Sets>
          <int>1</int>
          <int>2</int>
        </Sets>
      </BallsToPickSet>
    </BallsToSelect>
    <BallSetRanges>
      <Range>
        <Start>1</Start>
        <End>2</End>
      </Range>
      <ExtraRange>
        <Start>1</Start>
        <End>2</End>
      </ExtraRange>
      <SharingBalls>true</SharingBalls>
      <ExtraBallsDrawn>2</ExtraBallsDrawn>
    </BallSetRanges>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfLuckyNumbersGridRuleSetModel>