POST api/syxbetgames/draw/results

Request Information

URI Parameters

None.

Body Parameters

BO.SyxRequestObjects.BetGames.ApiDrawResultsRequest
NameDescriptionTypeAdditional information
DrawDate

date

None.

GameId

integer

None.

DrawCode

integer

None.

PageSize

integer

None.

Page

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "drawDate": "2025-12-14T18:05:12.1910091+02:00",
  "gameId": 1,
  "drawCode": 1,
  "pageSize": 2,
  "page": 3
}

application/xml, text/xml

Sample:
<ApiDrawResultsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DrawDate>2025-12-14T18:05:12.1910091+02:00</DrawDate>
  <GameId>1</GameId>
  <DrawCode>1</DrawCode>
  <PageSize>2</PageSize>
  <Page>3</Page>
</ApiDrawResultsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.SyxBetGames.BetGamesResult
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.SyxBetGames.BetGamesResult

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "resultId": 1,
      "drawCode": 2,
      "drawDateTime": "2025-12-14T18:05:12.1910091+02:00",
      "gameName": "sample string 4",
      "videoUrl": "sample string 5",
      "results": [
        {
          "ballNo": 1,
          "ballColour": "sample string 2"
        },
        {
          "ballNo": 1,
          "ballColour": "sample string 2"
        }
      ],
      "balls": [
        "sample string 1",
        "sample string 2"
      ],
      "totalPages": 6
    },
    {
      "resultId": 1,
      "drawCode": 2,
      "drawDateTime": "2025-12-14T18:05:12.1910091+02:00",
      "gameName": "sample string 4",
      "videoUrl": "sample string 5",
      "results": [
        {
          "ballNo": 1,
          "ballColour": "sample string 2"
        },
        {
          "ballNo": 1,
          "ballColour": "sample string 2"
        }
      ],
      "balls": [
        "sample string 1",
        "sample string 2"
      ],
      "totalPages": 6
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfBetGamesResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <BetGamesResult>
      <ResultId>1</ResultId>
      <DrawCode>2</DrawCode>
      <DrawDateTime>2025-12-14T18:05:12.1910091+02:00</DrawDateTime>
      <GameName>sample string 4</GameName>
      <VideoUrl>sample string 5</VideoUrl>
      <Results>
        <DrawResult>
          <BallNo>1</BallNo>
          <BallColour>sample string 2</BallColour>
        </DrawResult>
        <DrawResult>
          <BallNo>1</BallNo>
          <BallColour>sample string 2</BallColour>
        </DrawResult>
      </Results>
      <Balls>
        <string>sample string 1</string>
        <string>sample string 2</string>
      </Balls>
      <TotalPages>6</TotalPages>
    </BetGamesResult>
    <BetGamesResult>
      <ResultId>1</ResultId>
      <DrawCode>2</DrawCode>
      <DrawDateTime>2025-12-14T18:05:12.1910091+02:00</DrawDateTime>
      <GameName>sample string 4</GameName>
      <VideoUrl>sample string 5</VideoUrl>
      <Results>
        <DrawResult>
          <BallNo>1</BallNo>
          <BallColour>sample string 2</BallColour>
        </DrawResult>
        <DrawResult>
          <BallNo>1</BallNo>
          <BallColour>sample string 2</BallColour>
        </DrawResult>
      </Results>
      <Balls>
        <string>sample string 1</string>
        <string>sample string 2</string>
      </Balls>
      <TotalPages>6</TotalPages>
    </BetGamesResult>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfBetGamesResult>