Real-time record of V2

Request address: /api/server/recordAll

Request protocol: POST

Request description:

* Requests cannot exceed 1 time per minute

* Each request returns the latest 10-minute game record (excluding the current minute)

Request parameters:

FieldstypeRequiredillustrate
currencystringyesGame currency, refer to the appendix of “Game Platform”
pageNostringnoPage number, default page 1, return data according to the order update time
pageSizestringnoPage capacity, default 200, maximum 2000

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)
                            }
                     ]
                  }
    }