Transactions

Shows both collection and disbursement transactions.

Transactions can be filtered by;

1

Query all

{
    "all": true
}
2

By Date Range

{
    "start_date": "2024-01-01",
    "end_date": "2024-02-01"
}
POST {{uri}}/account/ke/transactions
{
    "code": 200,
    "message": "Transactions",
    "data": [
        {
            "id": 4,
            "transaction_code": "TSALX",
            "receipt_number": "SJU5WD5DIT",
            "amount": "10",
            "amount_in_usd": null,
            "shortcode": "0725212418",
            "account_number": null,
            "public_name": "DERRICK BUNDI",
            "currency_code": "KES",
            "message": "Success! Payment processed successfully.",
            "type": "MOBILE",
            "category": "DEBIT",
            "status": "COMPLETE",
            "asset": null,
            "created_at": "2024-10-30T07:07:13.000000Z"
        }
    ]
}

Last updated