# 1. Check Account Balance
# Request URL
/api/v1/account/checkBalance
# Request Method
- GET
# Request Params
| parameter name | Is it mandatory | type of data | length | example | description |
|---|---|---|---|---|---|
| appId | mandatory | string | - | - | application APPID |
| sign | mandatory | string | - | 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 | sign |
# successful response example. transactionStatus see reference (opens new window)
# Response Params
| parameter name | Is it mandatory | type of data | length | example | description |
|---|---|---|---|---|---|
| balance | mandatory | int | - | - | balance amount (unit: cents) 50010 cents =》 PHP:500.10 |
{
"code": 1000,
"message": "success",
"data": {
"balance": 439369947
}
}
# failed response example
{
"code":1002,
"message":"merchant white ip forbidden",
}