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

Withdrawal Validation

Developing
POST
/validate-withdrawal/
Last modified:2025-05-27 15:06:28

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{
    "external_reference": "REF00000001223025-04-30",
   "pin_code": "2025",
   "agent_code":"7726",
   "amount": "4500",
   "validation_operation_code": "27052597768541"
}

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/validate-withdrawal/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "external_reference": "REF00000001223025-04-30",
   "pin_code": "2025",
   "agent_code":"7726",
   "amount": "4500",
   "validation_operation_code": "27052597768541"
}'

Responses

🟢200OK
application/json
Body
success
boolean 
required
response_message
string 
required
response_code
string 
required
response_data
object 
required
reference
string 
required
cbs_reference
string 
required
external_reference
string 
required
Example
{
    "success": true,
    "response_message": "string",
    "response_code": "string",
    "response_data": {
        "reference": "string",
        "cbs_reference": "string",
        "external_reference": "string"
    }
}
Modified at 2025-05-27 15:06:28
Previous
Deposit
Next
Operation Lookup
Built with