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

Statement

Testing
GET
/mini-statement/
Last modified:2023-04-27 07:37:36
It returns a mini bank statement of the desired account.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
account_number
string 
required
Example:
30001-01-00-0000000016-01-50
Header Params
Authorization
string 
required
Example:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjc5NTA2MzI5LCJqdGkiOiI5ZTAzMWU0MjcwZGE0N2JjODViM2I2Y2Y2NzRhZDI3NyIsInVzZXJfaWQiOjN9.DjMF1veDMrNeo6nO2ivjg1yaunM-ko980HJBFo

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 GET 'http://127.0.0.1:8081/ihela/api/v1/mini-statement/?account_number=30001-01-00-0000000016-01-50' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjc5NTA2MzI5LCJqdGkiOiI5ZTAzMWU0MjcwZGE0N2JjODViM2I2Y2Y2NzRhZDI3NyIsInVzZXJfaWQiOjN9.DjMF1veDMrNeo6nO2ivjg1yaunM-ko980HJBFo'

Responses

🟢200OK
application/json
Body
array of:
client_account
string 
optional
date_created
string 
optional
reference
string 
optional
operation
string 
optional
debit
string 
optional
credit
string 
optional
amount
string 
optional
solde
null 
optional
description
string 
optional
Example
[
    {
        "client_account": "12-87",
        "date_created": "2023-03-16T01:28:45.839274+02:00",
        "reference": "CPT-12-eCAW.3000101-2168-1",
        "operation": "eCAW",
        "debit": 300000,
        "credit": 0,
        "amount": "300000.00",
        "solde": null,
        "description": "eCAW : Retrait"
    },
    {
        "client_account": "12-87",
        "date_created": "2023-03-16T00:58:37.553845+02:00",
        "reference": "CPT-12-eCAW.3000101-2167-1",
        "operation": "eCAW",
        "debit": 300000,
        "credit": 0,
        "amount": "300000.00",
        "solde": null,
        "description": "eCAW : Retrait"
    }
]
Modified at 2023-04-27 07:37:36
Previous
Account Balance
Next
Withdrawal
Built with