ConfirmSellingResult - Saba-sports/OddsDirectAPI_CN GitHub Wiki
该API用于确认兑现结果,当兑现状态为 2 (Accept) or 3 (Reject) 请呼叫此API确认兑现状态。
- 当确认兑现状态为 ConfirmAcceptSuccess ,意味着兑现程序已完成。
- 当兑现状态为 reject ,意味着这张注单暂时不能兑现直到请呼叫
/CheckSellingStatus
返回ConfirmRejectSuccess得以重新兌現。
Request
GET /cashout/{version}/ConfirmSellingResult?transId=123456
Accept: application/json
Authorization: Bearer {JWT token}
Parameter |
Format |
Mandatory |
Description |
transId |
long |
Yes |
注单号码 |
Response
{
"transId": long,
"status": int
}
Parameter |
Format |
Description |
transId |
long |
注单号码 |
status |
int |
确认兑现状态1:ConfirmAcceptSuccess2:ConfirmRejectSuccess |
ErrorCode Enumeration
Error Code |
Message |
Description |
E001 |
Internal Server Error |
服务器发生非预期错误 |
E002 |
Invalid parameter input |
参数输入无效或不支援 |
B019 |
Transaction Id Not Found |
找不到对应注单编号 |
B034 |
Selling Ticket is Waiting |
兑现状态等待中, 请呼叫 /CheckSellingStatus 确认最新状态. |