POST Event/GetExoticDetail
GetExoticDetail
Request Information
URI Parameters
None.
Body Parameters
ApiExoticDetailFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| EventBetTypeMapGroupID |
Gets or sets the EventBetTypeMapGroupID. |
integer |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventBetTypeMapGroupID": 1,
"userID": 2
}
application/xml, text/xml
Sample:
<ApiExoticDetailFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models"> <userID>2</userID> <EventBetTypeMapGroupID>1</EventBetTypeMapGroupID> </ApiExoticDetailFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiExoticDetailResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
Collection of ApiExoticDetail |
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": [
{
"EventName": "sample string 1",
"EventStatusID": 2,
"Legs": 1,
"Current_Leg": 1,
"EventBetTypeDetailMapID": 3,
"EventBetTypeMapID": 4,
"EventDetailName": "sample string 5",
"EventDetailNumber": 6
},
{
"EventName": "sample string 1",
"EventStatusID": 2,
"Legs": 1,
"Current_Leg": 1,
"EventBetTypeDetailMapID": 3,
"EventBetTypeMapID": 4,
"EventDetailName": "sample string 5",
"EventDetailNumber": 6
}
],
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiExoticDetailResponse 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>
<ApiExoticDetail>
<Current_Leg>1</Current_Leg>
<EventBetTypeDetailMapID>3</EventBetTypeDetailMapID>
<EventBetTypeMapID>4</EventBetTypeMapID>
<EventDetailName>sample string 5</EventDetailName>
<EventDetailNumber>6</EventDetailNumber>
<EventName>sample string 1</EventName>
<EventStatusID>2</EventStatusID>
<Legs>1</Legs>
</ApiExoticDetail>
<ApiExoticDetail>
<Current_Leg>1</Current_Leg>
<EventBetTypeDetailMapID>3</EventBetTypeDetailMapID>
<EventBetTypeMapID>4</EventBetTypeMapID>
<EventDetailName>sample string 5</EventDetailName>
<EventDetailNumber>6</EventDetailNumber>
<EventName>sample string 1</EventName>
<EventStatusID>2</EventStatusID>
<Legs>1</Legs>
</ApiExoticDetail>
</ResponseObject>
</ApiExoticDetailResponse>