POST BetGenius/GetBetGeniusBetSlipDetails
gets the BetSlip Information based on the MarketId
Request Information
URI Parameters
None.
Body Parameters
ApiBetGeniusBetSlipRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| marketID |
Gets or sets tournamentID. |
integer |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"marketID": 1,
"userID": 2
}
application/xml, text/xml
Sample:
<ApiBetGeniusBetSlipRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models"> <userID>2</userID> <marketID>1</marketID> </ApiBetGeniusBetSlipRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiBetGeniusBetSlipReponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
ApiBetGeniusBetSlip |
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": {
"FixtureID": 1,
"MarketID": 2,
"BetExpiryDate": "sample string 3",
"CreatedDateTime": "sample string 4",
"BetDescription": "sample string 5",
"MarketStatusID": 1,
"TotalOdds": 1.0,
"EventName": "sample string 6",
"EventDateTime": "sample string 7"
},
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiBetGeniusBetSlipReponse 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>
<BetDescription>sample string 5</BetDescription>
<BetExpiryDate>sample string 3</BetExpiryDate>
<CreatedDateTime>sample string 4</CreatedDateTime>
<EventDateTime>sample string 7</EventDateTime>
<EventName>sample string 6</EventName>
<FixtureID>1</FixtureID>
<MarketID>2</MarketID>
<MarketStatusID>1</MarketStatusID>
<TotalOdds>1</TotalOdds>
</ResponseObject>
</ApiBetGeniusBetSlipReponse>