en:订单查询v2
Betting Order Query V2
Request address: /api/server/recordOrder
Request protocol: POST
Request description:
* Requests cannot exceed 1 time per minute
Request parameters:
| Fields | type | Required | illustrate |
|---|---|---|---|
| currency | string | yes | Game currency, refer to the appendix of “Game Platform” |
| orderIds | string | yes | Order number, multiple order numbers are separated by |
Return to the example:
{
"code": 10000, // Status code, 10000 Success, Other failures
"msg": "Request succeeded", // Return information
"data": {
"total": 1, // Total
"pageNo": 1, // Page number
"pageSize": 200, // Page capacity
"list": [
{
"playerId": "abc123456", // Player account
"platType": "ag", // Game platform
"currency": "CNY", // Game currency
"gameType": "1", // Game type, 1: Video, 2: Slot, 3: Lottery, 4: Sports, 5: Esports, 6: Hunting, 7: Chess and Cards
"gameName": "Baccarat", // Game name
"round": "888888888", // Bureau number
"table": "888888888", // Table number
"seat": "888888888", // Seat number
"betAmount": 100.00, // Bet amount
"validAmount": 95.00, // Valid bet amount
"settledAmount": -100.00, // Win or lose amount
"betContent": "Banker", // Betting content, the database field length is recommended to be text, and some game field content will be relatively long
"status": 1, // Status, 0: Not completed, 1: Completed, 2: Cancel, 3: Revoked
"gameOrderId": "000001", // Order number
"betTime": "2022-08-08 18:18:18", // Order creation time (UTC +8)
"lastUpdateTime": "2022-08-08 18:18:18" // Order update time (UTC +8)
}
]
}
}
en/订单查询v2.txt · 最后更改: 2023/11/23 19:23 由 127.0.0.1