IHELA OFFICIAL DOCS
  1. Banking 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. Banking Services

Transaction fees

Testing
POST
/transaction-fee/
Last modified:2025-04-15 15:53:39
This endpoint is used to check differents transanctions fees depending on the transaction type and the amount.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
currency
string 
required
operation_type
string 
required
amount
string 
required
Example
{
    "currency":"BIF",
    "operation_type":"withdrawal",
    "amount":"4000"
    
}

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-fee/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "currency":"BIF",
    "operation_type":"withdrawal",
    "amount":"4000"
    
}'

Responses

🟢200OK
application/json
Body
string 
optional
Example
{
    "success": true,
    "response_code": "00",
    "response_message": "Success",
    "response_data": {
        "fee": "0",
        "currency": "BIF",
        "amount": 4000,
        "operation_type": "withdrawal"
    }
}
Modified at 2025-04-15 15:53:39
Previous
Transaction Status
Next
Introduction
Built with