POST Betting/GetNextRaceFiltered

Gets the next filtered race.

Request Information

URI Parameters

None.

Body Parameters

ApiGetNextRaceFilteredRequestFilter
NameDescriptionTypeAdditional information
filterValue

Gets or sets a value for the filtered selections amount .

integer

None.

isLocal

Gets or sets a value indicating whether this instance is local.

boolean

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "filterValue": 1,
  "isLocal": true,
  "userID": 3
}

application/xml, text/xml

Sample:
<ApiGetNextRaceFilteredRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <userID>3</userID>
  <filterValue>1</filterValue>
  <isLocal>true</isLocal>
</ApiGetNextRaceFilteredRequestFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiNextRaceFilteredResponse
NameDescriptionTypeAdditional information
ResponseObject

Gets or sets the response object.

Collection of ApiNextRaceFiltered

None.

ResponseType

Gets or sets the type of the response.

integer

None.

ResponseMessage

Gets or sets the response message.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseObject": [
    {
      "EventID": 1,
      "EventName": "sample string 2",
      "EventNo": 3,
      "EDate": "2025-12-06T06:55:20.7035869+02:00",
      "SportId": 5,
      "TournaNme": "sample string 6",
      "TourID": 7,
      "SportName": "sample string 8",
      "CountryId": 9,
      "ETime": "00:00:00.1234567",
      "EDates": "2025-12-06T06:55:20.7035869+02:00",
      "CountryName": "sample string 10"
    },
    {
      "EventID": 1,
      "EventName": "sample string 2",
      "EventNo": 3,
      "EDate": "2025-12-06T06:55:20.7035869+02:00",
      "SportId": 5,
      "TournaNme": "sample string 6",
      "TourID": 7,
      "SportName": "sample string 8",
      "CountryId": 9,
      "ETime": "00:00:00.1234567",
      "EDates": "2025-12-06T06:55:20.7035869+02:00",
      "CountryName": "sample string 10"
    }
  ],
  "ResponseType": 1,
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiNextRaceFilteredResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseType>1</ResponseType>
  <ResponseObject>
    <ApiNextRaceFiltered>
      <CountryId>9</CountryId>
      <CountryName>sample string 10</CountryName>
      <EDate>2025-12-06T06:55:20.7035869+02:00</EDate>
      <EDates>2025-12-06T06:55:20.7035869+02:00</EDates>
      <ETime>PT0.1234567S</ETime>
      <EventID>1</EventID>
      <EventName>sample string 2</EventName>
      <EventNo>3</EventNo>
      <SportId>5</SportId>
      <SportName>sample string 8</SportName>
      <TourID>7</TourID>
      <TournaNme>sample string 6</TournaNme>
    </ApiNextRaceFiltered>
    <ApiNextRaceFiltered>
      <CountryId>9</CountryId>
      <CountryName>sample string 10</CountryName>
      <EDate>2025-12-06T06:55:20.7035869+02:00</EDate>
      <EDates>2025-12-06T06:55:20.7035869+02:00</EDates>
      <ETime>PT0.1234567S</ETime>
      <EventID>1</EventID>
      <EventName>sample string 2</EventName>
      <EventNo>3</EventNo>
      <SportId>5</SportId>
      <SportName>sample string 8</SportName>
      <TourID>7</TourID>
      <TournaNme>sample string 6</TournaNme>
    </ApiNextRaceFiltered>
  </ResponseObject>
</ApiNextRaceFilteredResponse>