跳到主要内容

取消下注通知接口格式

1、取消下注通知接口格式

接口路径

  • POST
  • /aigame/v1/wallet/refund

请求参数

参数名称类型必填说明
agent_id商户 IDstring必填商户ID
user_id商户侧用户 IDstring必填商户侧用户ID
game_id游戏IDstring必填游戏ID,101: 百家乐
bet_txn_id下注订单IDstring必填下注订单ID
bet_amount下注金额string必填下注金额
win_amount派彩金额string必填派彩金额
status订单状态int必填0-已下注,1-已结算
bet_time下注时间int必填下注时间(单位毫秒)
refund_time取消下注时间int必填取消下注时间(单位毫秒)
currency币种string必填币种
timestamp当前时间戳int必填传调用接口时的时间戳(单位毫秒,有效期十分钟)
sign签名string必填签名算法详见接口说明

响应参数

参数名称类型说明
code响应码int错误码
message响应信息string错误信息
data响应数据dict响应数据详情
--balance玩家余额string玩家余额
--currency币种string币种

请求范例

curl --location 'https://商户侧地址/aigame/v1/wallet/refund' \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "agent001",
"user_id": "testUid03",
"game_id": "101",
"bet_txn_id": "67453d0c23c36d2571d40817",
"bet_amount": "100",
"win_amount": "195",
"status": 1,
"bet_time": 1732589121000,
"refund_time": 1732589849000,
"currency": "VND2",
"timestamp": 1732589849000,
"sign": "c57d23cfae027bf326720308201b733b"
}'

响应范例

{
"code": 200,
"message": "success",
"data": {
"balance": "1282.66",
"currency": "VND2"
}
}

错误码

200 成功
800100 服务异常
408000 参数错误
600100 签名错误
800101 会员不存在
800102 币种不存在
800107 订单ID不存在
800108 取消投注失败