v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB
Transactions

Fetch credit/debit transactions on the parent account

You can use this endpoint to fetch credit/debit transactions on the parent account.

get/v1/transactions/bank

Query parameters

limitinteger

This endpoint is paginated. limit describes the size of the page you are querying

cursorstring

The cursor is used to scroll to the next page. When making the first call to list all accounts, there is no need to pass in any cursor since the API has not returned any cursor back to you. Only use cursor when the API provides it

dateFromstring

This starting date (UTC). Sample date: 2023-01-01T00:00:00

dateTostring

This ending date (UTC). Sample date: 2024-09-30T23:59:59

Headers

accountIdstring uuid required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27

The parent accountId of the business.

Response

OK - your request was successful.

codestring required

Response Code

descriptionstring required

Response description

Example response

{
  "code": "00",
  "description": "Success",
  "data": {
    "results": [
      {
        "amount": 7000,
        "currency": "NGN",
        "meta": {
          "billerId": "API_FCIR5UQFMYS",
          "productId": "p2p",
          "type": "p2p",
          "transactionId": "API-P2P-84026-d8a4d658-6747-418d-a7e2-37bc6290310d",
          "parentAccountId": "01a10aeb-d989-460a-bbde-9842f2b4320f",
          "accountId": "890022ce-bae0-45c1-9b9d-ee7872e6ca27",
          "transactionAmount": 7000
        },
        "status": "SUCCESS",
        "timeUpdated": "2023-09-08T19:05:21.000Z",
        "walletBalance": 285951,
        "transactionType": "DEBIT"
      }
    ],
    "cursor": "xchbaVFsjdsbaADddd"
  }
}