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

Transaction Status

POST
/transaction-status/
Last modified:2025-04-15 15:58:36
Used to check if a transaction was successful or not.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Authorization
string 
optional
access token
Example:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjc5NTA2MzI5LCJqdGkiOiI5ZTAzMWU0MjcwZGE0N2JjODViM2I2Y2Y2NzRhZDI3NyIsInVzZXJfaWQiOjN9.DjMF1veDMrNeo6nO2ivjg1yaunM-ko980HJBFo
Body Params application/json
reference
string 
optional
the transaction reference
Example
{ 
      "reference":"aCAD.3000100-988.3000101-2266"
}

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/transaction-status/' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjc5NTA2MzI5LCJqdGkiOiI5ZTAzMWU0MjcwZGE0N2JjODViM2I2Y2Y2NzRhZDI3NyIsInVzZXJfaWQiOjN9.DjMF1veDMrNeo6nO2ivjg1yaunM-ko980HJBFo' \
--header 'Content-Type: application/json' \
--data-raw '{ 
      "reference":"aCAD.3000100-988.3000101-2266"
}'

Responses

🟢200OK
application/json
Body
success
boolean 
optional
response_code
string 
optional
response_data
object 
optional
reference
string 
required
external_reference
string 
required
status
string 
required
date
string 
required
response_message
string 
optional
Example
{
    "success": true,
    "response_code": "00",
    "response_data": {
        "reference": "04082261210079",
        "external_reference": "....",
        "status": "Success",
        "date": "2022-08-04T17:06:51.188113Z"
    },
    "response_message": "Transaction found"
}
Modified at 2025-04-15 15:58:36
Previous
Operation Lookup
Built with