IHELA OFFICIAL DOCS
  1. Agent Services
IHELA OFFICIAL DOCS
  • iHela Ryanje Official Docs
  • Merchant Services
    • Introduction
    • Basics
      • oAuth2 Authentication
      • Cashin Payment banks
      • Cashout Payment banks
      • Account Lookup
    • Bills Payment
      • Bills operations flow
      • Bills Init
      • Bill Status Check
      • Account Cashin
  • Banking Services
    • Introduction
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Account Balance
      POST
    • Statement
      GET
    • Withdrawal
      POST
    • Deposit
      POST
    • Transaction Status
      POST
    • Transaction fees
      POST
  • Agent Services
    • Introduction
    • Withdrawal by QR Code or Token
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Deposit
      POST
    • Withdrawal Validation
      POST
    • Operation Lookup
      POST
    • Transaction Status
      POST
  1. Agent Services

Account Lookup

Testing
POST
/account-lookup/
Last modified:2025-08-29 14:44:55
For more details on a given account.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Body Params application/json

Example
{
    "account_number": "68432567"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://127.0.0.1:8081/ihela/api/v1/account-lookup/?account_format=' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "account_number": "68432567"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": "00",
    "response_data": {
        "account_number": "0000001413-01",
        "customer_id": 1413,
        "client_id": 1483,
        "name": "NOBODY NOBODYME",
        "html": null,
        "bank": "IHELA CREDIT UNION"
    },
    "response_message": "Success",
    "success": true
}
Modified at 2025-08-29 14:44:55
Previous
Token request
Next
Deposit
Built with