Balance Inquiry

To retrieve current wallet balance

POST https://<API ENDPOINT>/payment/report/balance

Headers

Name
Value

Content-Type

application/json

x-appid

<App ID>

x-signature

<Signature> (see quick start)

Body

Name
Type
Description

appId

string

Agent App ID

Response

{
  "code": 0,
  "data": {
    "wallet": {
      "balance": 0,
      "payoutFreeze": 0,
    },
    "todayDeposit": 0,
    "todayWithdraw": 0,
  }
}

Last updated