IHELA OFFICIAL DOCS
  1. Basics
IHELA OFFICIAL DOCS
  • iHela Ryanje Official Docs
  • Merchant Services
    • Introduction
    • Basics
      • oAuth2 Authentication
        POST
      • Cashin Payment banks
        GET
      • Cashout Payment banks
        GET
      • Account Lookup
        GET
    • 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
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Deposit
      POST
    • Withdrawal Validation
      POST
    • Operation Lookup
      POST
    • Transaction Status
      POST
  1. Basics

Account Lookup

GET
/bank/{bank_slug}/account/lookup/
Last modified:2023-05-13 09:17:47
This page returns the customer account and the customer name giving the customer ID or account number.
The endpoints takes the bank slug and the account_number as query string and returns the client name and his formatted account number.
The account_number query parameter accepts the customer account number, the email or the phone number.
Note that this endpoint is used only for banks that accepts lookup function.
To know that bank accepts lookup, please check the has_lookup variable in the api_values attribute in every bank body.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
bank_slug
string 
required
Example:
MF1-0001
Query Params
account_number
string 
optional
Example:
16-01

Request 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 --request GET 'http://127.0.0.1:8081/api/v2/bank/MF1-0001/account/lookup/?account_number=16-01'

Responses

🟢200OK
application/json
Body
response_code
string 
required
response_data
object 
required
account_number
string 
required
name
string 
required
response_message
string 
required
success
boolean 
required
Example
{
    "response_code": "00",
    "response_data": {
        "account_number": "30001-01-00-0000000001-01-95",
        "name": "Bizimana Jean Claude"
    },
    "response_message": "Success",
    "success": true
}
Modified at 2023-05-13 09:17:47
Previous
Cashout Payment banks
Next
Bills operations flow
Built with