Check Balance
API to get remaining balance in your IAK 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 |
{
"username" : "123123123",
"sign" : "df5e80e8ab7f94a905617282ad8c26f3"
}
Response
Attributes | Type | Description | Mandatory |
---|---|---|---|
balance | Double | Your balance | Yes |
message | String | Message | Yes |
rc | String | Response code. See response code list | Yes |
{
"data": {
"balance": 997136249,
"message": "SUCCESS",
"rc": "00"
}
}
Live Testing
Request URL
https://prepaid.iak.dev/api/check-balance
Request Method
Request Header
Content-Type: application/json
Body
Result
Tutorial Video
You can see this video for check balance code explanation using Laravel.
Or you can see this video for check balance code explanation using PHP.
Table of Contents