Check Balance
API to get remaining balance in your IDSL wallet.
Path
| Method | Path |
|---|---|
| POST | api/check-balance |
Request Body
| Attributes | Type | Description | Mandatory |
|---|---|---|---|
| username | String | Your registered phone number | Yes |
| sign | String | Signature. Value: md5(username+api_key+'bl') | Yes |
| currency | String | Currency IDR or USD default: IDR | No |
{
"username" : "123123123",
"sign" : "df5e80e8ab7f94a905617282ad8c26f3",
"currency" : "IDR"
}
Response
| Attributes | Type | Description | Mandatory |
|---|---|---|---|
| balance | Double | Your balance | Yes |
| message | String | Message | Yes |
| rc | String | Response code. See response code list | Yes |
| currency | String | Currency | Yes |
{
"data": {
"balance": 997136249,
"message": "SUCCESS",
"rc": "00",
"currency": "IDR"
}
}
Live Testing
Request URL
https://prepaid.iak.dev/api/check-balance
Request Method
Request Header
Content-Type: application/json
Body
Result
Table of Contents