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
    • 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

Operation Lookup

Developing
POST
/operation-lookup/
Last modified:2025-05-13 13:07:09

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Authorization
string 
optional
Example:
Bearer {{ bank_switch_token}}
Body Params application/json
object {0}
Example
{
    "operation_code": "13052537878503",
    "amount":"3000"
}

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 -g --request POST 'http://127.0.0.1:8081/ihela/api/v1/operation-lookup/' \
--header 'Authorization: Bearer {{ bank_switch_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "operation_code": "13052537878503",
    "amount":"3000"
}'

Responses

🟢200OK
application/json
Body
success
boolean 
required
response_code
string 
required
response_message
string 
required
response_data
object 
required
id
integer 
required
created_at
string 
required
amount
string 
required
code
string 
required
debit_account_holder
string 
required
description
string 
required
Example
{
    "success": true,
    "response_code": "string",
    "response_message": "string",
    "response_data": {
        "id": 0,
        "created_at": "string",
        "amount": "string",
        "code": "string",
        "debit_account_holder": "string",
        "description": "string"
    }
}
Modified at 2025-05-13 13:07:09
Previous
Withdrawal Validation
Next
Transaction Status
Built with