POST
/
api
/
user
/
getUserDailyStatistics
curl --request POST \
  --url https://waasapi.url/api/v1/api/user/getUserDailyStatistics \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '{
  "userId": 1308734,
  "jobDate": "2023-10-25"
}'
{
  "code": 0,
  "message": "",
  "data": {
    "jobDay": "2023-10-01",
    "totalDepositAmount": 100000.5,
    "totalDepositCount": 100,
    "totalDepositUserCount": 50,
    "totalWithdrawAmount": 80000.75,
    "totalWithdrawCount": 80,
    "totalWithdrawUserCount": 40,
    "pendingCollectionAmount": 5000.25,
    "collectionCount": 10,
    "pendingCollectionAddressCount": 5,
    "coldWalletBalance": 200000,
    "hotWalletBalance": 150000,
    "additionalTransferHotWallet": 1000
  }
}

接口描述

提供指定商户及日期的业务日报统计数据,包含充值、提现、钱包余额等关键指标。

Headers

Content-Type
string
required

请求内容类型

Example:

"multipart/form-data"

X-API-KEY
string
required

平台方分配的 API-KEY

Example:

"your-api-key"

Body

application/json

每日统计请求参数(JSON 格式)

The body is of type object.

Response

200
application/json

成功响应,返回每日统计结果。

The response is of type object.