en:获取全部平台游戏记录v2
Get all platform game records v2
* Request address: /api/server/recordAll
* Request protocol: POST
* Request description: * Cannot collect more than 5 times every five minutes * The start time and end time cannot exceed 24 hours (you can get any day within 24 hours, allowing for one day). When orderIds is not empty, the start time and end time can be passed to empty. * The start time cannot be greater than the end time (can be equal to) * If there are many bet records, you can appropriately shorten the collection time and increase the number of records obtained per page to avoid consuming the number of acquisitions each time because each page is too much.
* Request parameters:
| Field name | type | Must-choose | illustrate |
|---|---|---|---|
| platType | string | no | Game platform, all platform records are obtained by default (refer to the appendix of “Game Platform”) |
| playerId | string | no | Player account, all player records are obtained by default |
| currency | string | yes | Currency code, CNY: RMB, USD: USD, HKD: Hong Kong dollar, PHP: Philippine peso |
| orderIds | string | no | Order number, multiple order numbers are separated by, (please do not pass the time parameters according to the order number) |
| gameType | string | no | Game type, all types of records are obtained by default (1: video, 2: slot machine, 3: lottery, 4: sports, 5: e-sports, 6: fishing, 7: chess and cards) |
| startTime | string | yes | Order start time (Beijing time), example: 2022-08-08T18:18:18 |
| endTime | string | yes | Order end time (Beijing time), example: 2022-08-08T18:18:18 |
| pageNo | string | no | Page number, default page 1, return data in positive order of order creation time, and obtain records according to bet time when it is “1”. |
| pageSize | string | no | Page capacity, default 200, maximum 2000 |
* Return data content
{
"code": 10000, // Status code
"msg": "request succeeded", // Message
"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
"gameName": "Baccarat", // Game name
"betAmount": 100.00, // Bet amount
"validAmount": 95.00, // Valid bet amount
"settledAmount": -100.00, // Win or lose amount
"betContent": "Banker", // Betting content
"gameResult": "Player", // Game results
"status": 1, // Status, 0: Not completed, 1: Completed, 2: Cancel, 3: Order withdrawn
"gameOrderId": "000001", // Order number
"betTime": "2022-08-08 18:18:18" // Order creation time (Beijing time)
"lastUpdateTime": "2022-08-08 18:18:18" // Order update time (Beijing time)
}
]
}
}
en/获取全部平台游戏记录v2.txt · 最后更改: 2022/11/17 18:29 由 127.0.0.1