Get Balance
Request
Key | Value | Required | Description |
---|---|---|---|
timestamp | string | yes | In Jakarta Time GMT+7, Format: YYYY-MM-DD hh:mm:ss |
Unencrypted & Unsigned (Plain Payload) Example
{
"timestamp": "2021-12-12 12:12:12"
}
Response
Key | Value | Required | Description |
---|---|---|---|
string | yes | Response code as specified (see 10. Response Codes) | |
string | yes | Additional informational or error message | |
balance_details | array | yes | Balance details |
string | yes | In Jakarta Time GMT+7, Format: YYYY-MM-DD hh:mm:ss |
Decrypted & Verified (Plain Payload) Success Example
{
"response_code": "00",
"message": "Success",
"balance_details": [
{
"label": "General",
"value": 1500000000.00
}
],
"timestamp": "2021-12-12 12:12:12"
}
Decrypted & Verified (Plain Payload) Failed Example
{
"response_code": "31",
"message": "Invalid token",
"timestamp": "2021-12-12 12:12:12"
}