IHELA OFFICIAL DOCS
  1. Bills Payment
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
        POST
      • Bill Status Check
        POST
      • Account Cashin
        POST
  • 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
    • Withdrawal by QR Code or Token
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Deposit
      POST
    • Withdrawal Validation
      POST
    • Operation Lookup
      POST
    • Transaction Status
      POST
  1. Bills Payment

Account Cashin

POST
/payments/cash-in/
Last modified:2023-09-22 16:49:10

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "credit_account": "0000000016-01",
    "credit_bank": "MF1-0001",
    "credit_account_holder": "PIERRE CLAVER KOKO BANYWERHA",
    "amount": 500,
    "merchant_reference": "123456",
    "description": "Payment Product 0098434",
    "pin_code": "1234",
    "currency": "BIF"
}

Request Code 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 POST 'http://127.0.0.1:8081/api/v2/payments/cash-in/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "credit_account": "0000000016-01",
    "credit_bank": "MF1-0001",
    "credit_account_holder": "PIERRE CLAVER KOKO BANYWERHA",
    "amount": 500,
    "merchant_reference": "123456",
    "description": "Payment Product 0098434",
    "pin_code": "1234",
    "currency": "BIF"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": "00",
    "response_data": {
        "reference": "29032360510975",
        "bank_reference": "123456",
        "pending_id": 975,
        "date": "2023-03-29T09:16:24.396951Z",
        "is_partial": false
    },
    "response_message": "Transaction successfully done. Reference: 29032360510975 >> mTSF.3000100-756.3000101-2108",
    "success": true
}
Modified at 2023-09-22 16:49:10
Previous
Bill Status Check
Next
Introduction
Built with