GetCashoutPrice - Saba-sports/OddsDirectAPI_CN GitHub Wiki
此API用于获取实时兑现价格相关信息
Request
GET /cashout/{version}/GetCashoutPrice?transIds=123456
Accept: application/json
X-Forwarded-For: client ip (如果通过代理使用API需要额外带入)
Authorization: Bearer {JWT token}
Parameter |
Format |
Mandatory |
Description |
transIds |
string |
|
注单号码使用 "," 区隔注单号码,ex:1111,2222默认情况下,返回客户的所有注单信息。 |
Response
{
"priceInfo": PriceInfo[]
}
Parameter |
Format |
Description |
priceInfo |
PriceInfo array |
实时兑现信息列表 |
PriceInfo
[
{
"transId": long,
"cashoutStatus": int,
"cashoutStake": decimal,
"cashoutPrice": decimal
}
]
Parameter |
Format |
Description |
transId |
long |
注单号码 |
cashoutStatus |
int |
兑现状态1:CanCashout2:CannotCashout (目前不支持兑现)3:NoCashoutTicket (这张注单不能兑现)4:TicketNotFound |
cashoutStake |
decimal |
兑现的注额 |
cashoutPrice |
decimal |
兑现的价格 |
ErrorCode Enumeration
Error Code |
Message |
Description |
E001 |
Internal Server Error |
服务器发生非预期错误 |
E002 |
Invalid parameter input |
参数输入无效或不支援 |