POST Event/GetEventBetTypeMapByEbtmID
Gets the EventBetTypeMap by EbtmID.
Request Information
URI Parameters
None.
Body Parameters
ApiGetEBTMRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| ebtmID |
Gets or sets the ebtmID |
integer |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ebtmID": 1,
"userID": 2
}
application/xml, text/xml
Sample:
<ApiGetEBTMRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models"> <userID>2</userID> <ebtmID>1</ebtmID> </ApiGetEBTMRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiGetEBTMResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
ApiEbtm |
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": {
"BetTypeExtraInfo": 1,
"BetTypeExtraInfo2": 1.0,
"BetTypeID": 1,
"EventBetTypeMapGroupID": 2,
"EventBetTypeMapID": 3,
"EventID": 4,
"EventStatusID": 5,
"PayoutTypeID": 6
},
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiGetEBTMResponse 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>
<BetTypeExtraInfo>1</BetTypeExtraInfo>
<BetTypeExtraInfo2>1</BetTypeExtraInfo2>
<BetTypeID>1</BetTypeID>
<EventBetTypeMapGroupID>2</EventBetTypeMapGroupID>
<EventBetTypeMapID>3</EventBetTypeMapID>
<EventID>4</EventID>
<EventStatusID>5</EventStatusID>
<PayoutTypeID>6</PayoutTypeID>
</ResponseObject>
</ApiGetEBTMResponse>