GetCashoutInfo - Saba-sports/OddsDirectAPI_CN GitHub Wiki

此API用于获取实时兑现相关信息

Request

GET  /cashout/{version}/GetCashoutInfo?transId=123456
Accept: application/json
X-Forwarded-For: client ip (如果通过代理使用API需要额外带入)
Authorization: Bearer {JWT token}
Parameter Format Mandatory Description
transIds string Yes 沙巴注单号码使用 "," 区隔注单号码

Response

{    
    "priceInfo": PriceInfo[] 
} 
Parameter Format Description
priceInfo PriceInfo array 实时兑现信息列表

PriceInfo

[
    {
        "key": string,
        "transId": long,
        "cashoutEnabled": bool,
        "minStake": int,
        "maxStake": int,
        "cashoutRate": decimal
    }
]
Parameter Format Description
key string 实时兑现信息的识别码
transId long 沙巴注单号码
cashoutEnabled bool 當前是否支持实时兑现
minStake int 最低实时兑现注額
maxStake int 最高实时兑现注額
cashoutRate decimal 实时兑现率

ErrorCode Enumeration

Error Code 显示讯息 说明描述
E001 Internal Server Error 服务器发生非预期错误
E002 Invalid parameter input 参数输入无效或不支援
B019 Transaction Id Not FoundTransaction Id Not Found; TransId:xxx 找不到对应注单编号多票请求时会响应哪个事务id有问题。
B023 Cashout Price Not FoundCashout Price Not Found; TransId:xxx 未找到实时兑现的价格多票请求时会响应哪个事务id有问题。