GET
/
v1
/
transactions
/
bank
curl --request GET \
  --url https://api.nomba.com/v1/transactions/bank \
  --header 'Authorization: Bearer <token>' \
  --header 'accountId: <accountid>'
{
  "code": "00",
  "description": "Success",
  "data": {
    "results": [
      {
        "amount": 7000,
        "currency": "NGN",
        "meta": {
          "billerId": "API_FCIR5UQFMYS",
          "terminalActionId": "<string>",
          "productId": "p2p",
          "fee": 123,
          "type": "p2p",
          "transactionId": "API-P2P-84026-d8a4d658-6747-418d-a7e2-37bc6290310d",
          "rrn": "<string>",
          "parentAccountId": "01a10aeb-d989-460a-bbde-9842f2b4320f",
          "terminalLabel": "<string>",
          "accountId": "890022ce-bae0-45c1-9b9d-ee7872e6ca27",
          "merchantTxRef": "<string>",
          "transactionAmount": 7000,
          "mCollectionsId": "<string>"
        },
        "status": "SUCCESS",
        "timeUpdated": "2023-09-08T19:05:21.000Z",
        "walletBalance": 285951,
        "transactionType": "DEBIT"
      }
    ],
    "cursor": "xchbaVFsjdsbaADddd"
  }
}

Authorizations

Authorization
string
headerrequired

Nomba authenticates API calls with OAuth2 HTTP bearer tokens. There are two methods of authentication; Client-Credentials method and PKCE (Proof Key for Code Exchange) method. In each of the methods, You will get an ACCESS_TOKEN. You need to use an "Authorization" HTTP header to provide your ACCESS_TOKEN. For example: Authorization: {ACCESS_TOKEN}.

Headers

accountId
string
required

The parent accountId of the business.

Query Parameters

limit
integer

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

cursor
string

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

dateFrom
string

This starting date (UTC)

dateTo
string

This ending date

Response

200 - application/json
code
string
required

Response Code

description
string
required

Response description

data
object
required