# Balance Inquiry

# HTTP Request Info

# URL

{domain}/open-api/account/balance

# Method

POST

# Content-Type

application/json

# Request Parameters

Paramter Name Required Type Example Description
countryCode Yes string Reference List country code
timestamp Yes long 1677495496979 current timestamp

# Response Param

Parameter Name Type Description
code integer response code
message string response message
data Object data

# Response Parameters

Paramter Name Type Description
balance string account balance Exp 10000.00

# Request Example

# Request Body

{
  "appId": "349094b672f3479692ca70790477a8af",
  "sign": "p69kDdBZHWd08EGxk8GQp0q/jTz0iEzmp2P5fSWEjc4iTZugjGm4yS5B0VwYuxfbujPatPItqNOLGokTOdBWZ+zjwxHN0RylNsDhmQW7UGDZ+SrtC72tDVZy2bRm8fa9vVOA8SgS1rNZDfyGT+7gB5m6fn6jLl6+lsGXUuE+LZf+WG7rFtewgR6MTuavEI7PQg0piAx5ypS0dWyOlL6nqGP7w5ZnV6FV23JLuKVLpj/+kJ28GtIh7EHrg1/3JF6R2GodjzPCZQj8y9QS/K1IrJ1CIXU3UvHT2gvzIaiEInlivb5u4fYQEMvx7lpHt+xyJQYpFU/lX6pFLsKe/rGZcA==",
  "param": "{\"countryCode\":\"PH\",\"timestamp\":\"1682264649\"}"
}

# Response example

{
    "code": 10000,
    "message": "Success",
    "data": {
        "balance": "10000.00"
    }
}