POST Event/GetSportExotics

GetExoticGroupName

Request Information

URI Parameters

None.

Body Parameters

ApiSportExoticFilter
NameDescriptionTypeAdditional information
TournamentID

Gets or sets the TournamentID.

integer

None.

SpecialExoticsOnly

Gets or sets the SpecialExoticsOnly.

boolean

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "TournamentID": 1,
  "SpecialExoticsOnly": true,
  "userID": 1
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiSportExoticResponse
NameDescriptionTypeAdditional information
ResponseObject

Gets or sets the response object.

Collection of ApiSportExotic

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": [
    {
      "SpeciaExoticCategoryName": "sample string 1",
      "EventBetTypeMapGroupID": 2,
      "BetTypeID": 3,
      "EventDateTime": "2025-12-06T06:54:24.5848371+02:00",
      "EventBetTypeMapGroupName": "sample string 4"
    },
    {
      "SpeciaExoticCategoryName": "sample string 1",
      "EventBetTypeMapGroupID": 2,
      "BetTypeID": 3,
      "EventDateTime": "2025-12-06T06:54:24.5848371+02:00",
      "EventBetTypeMapGroupName": "sample string 4"
    }
  ],
  "ResponseType": 1,
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiSportExoticResponse 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>
    <ApiSportExotic>
      <BetTypeID>3</BetTypeID>
      <EventBetTypeMapGroupID>2</EventBetTypeMapGroupID>
      <EventBetTypeMapGroupName>sample string 4</EventBetTypeMapGroupName>
      <EventDateTime>2025-12-06T06:54:24.5848371+02:00</EventDateTime>
      <SpeciaExoticCategoryName>sample string 1</SpeciaExoticCategoryName>
    </ApiSportExotic>
    <ApiSportExotic>
      <BetTypeID>3</BetTypeID>
      <EventBetTypeMapGroupID>2</EventBetTypeMapGroupID>
      <EventBetTypeMapGroupName>sample string 4</EventBetTypeMapGroupName>
      <EventDateTime>2025-12-06T06:54:24.5848371+02:00</EventDateTime>
      <SpeciaExoticCategoryName>sample string 1</SpeciaExoticCategoryName>
    </ApiSportExotic>
  </ResponseObject>
</ApiSportExoticResponse>