GetSystemParlayDetails - Saba-sports/OddsDirectAPI_CN GitHub Wiki
获取System Parlay 中的下注详细资料。
Request
GET /betting/{version}/GetSystemParlayDetails?parlayTicketNo=12345
Content-Type: application/json
X-Forwarded-For: client ip (如果通过代理使用API需要额外带入)
Authorization: Bearer {JWT token}
| Parameter |
Format |
Length |
Mandatory |
Description |
| parlayTicketNo |
long |
|
Yes |
串关票券编号,从GetBetDetails获得. |
Response
{
systemParlayInfo : [
{
"stake": decimal,
"price": decimal,
"settlementPrice": decimal,
"settlementTime": DateTime,
"SettlementAmount": decimal,
"systemParlayDetails":[
{
"sportType": int,
"leagueId": int,
"eventId": int,
"homeTeamId": int,
"awayTeamId": int,
"kickOffTime": DateTime,
"parlayPrice": decimal,
"betType": int,
"key": string,
"homePoint": decimal,
"awayPoint": decimal,
"isLive": bool,
"status": string,
"homeScore": int?,
"awayScore": int?,
"parlaySettlementTime": DateTime
},
{
"sportType": int,
"leagueId": int,
"eventId": int,
"homeTeamId": int,
"awayTeamId": int,
"kickOffTime": DateTime,
"parlayPrice": decimal,
"betType": int,
"key": string,
"homePoint": decimal,
"awayPoint": decimal,
"isLive": bool,
"status": string,
"homeScore": int?,
"awayScore": int?,
"parlaySettlementTime": DateTime
}]
}]
}
| Parameter |
Format |
Description |
| systemParlayInfo |
Array |
串关信息列表 |
| Parameter |
Format |
Description |
| stake |
decimal |
下注金额 |
| price |
decimal |
下注赔率 |
| settlementPrice |
decimal |
注单结算的赔率 |
| settlementTime |
dateTime |
注单结算的时间(时区GMT+0) |
| settlementAmount |
decimal |
结算的赢利或亏损金额 |
| systemParlayDetails |
Array |
串关详细信息列表 |
| Parameter |
Format |
Description |
| sportType |
int |
体育项目ID |
| leagueId |
int |
联赛ID |
| eventId |
int |
赛事ID |
| homeTeamId |
int |
主队ID |
| awayTeamId |
int |
客队ID |
| kickOffTime |
datetime |
赛事开赛时间(时区GMT+0) |
| parlayPrice |
decimal |
串关下注赔率 |
| betType |
int |
投注类型 |
| key |
string |
投注类型选项 |
| homePoint |
decimal |
主队让球 |
| awayPoint |
decimal |
客对让球 |
| isLive |
bool |
是否为滚球赛事 |
| status |
string |
注单状态half won / half lose / won / lose / void / running / draw / reject / refund / waiting |
| homeScore |
int? |
下注时主队得分 |
| awayScore |
int? |
下注时客队得分 |
| parlaySettlementTime |
dateTime |
串关结算时间(时区GMT+0) |