GET
/
wallet
/
transactions
Wallet Transactions
curl --request GET \
  --url https://nini.monieswitch.com/wallet/transactions \
  --header 'Authorization: <authorization>'
{
  "data": {
    "currentPage": 1,
    "perPage": 20,
    "totalRecords": 3,
    "transactions": [
      {
        "accountName": "Oga Patapata",
        "accountNumber": "2236281741",
        "amount": 4890,
        "category": "REGULAR",
        "createdAt": "2023-12-04T18:02:10.704Z",
        "id": "72097cf0-5311-43f4-9b0f-6cf5c1e7ba1f",
        "type": "CREDIT"
      },
      {
        "accountName": "Oga Patapata",
        "accountNumber": "2236281741",
        "amount": 138,
        "category": "REGULAR",
        "createdAt": "2023-12-04T18:05:09.345Z",
        "id": "7bb81284-caed-438f-9cd5-2e306f1efd51",
        "type": "CREDIT"
      },
      {
        "accountName": "Oga Patapata",
        "accountNumber": "2236281741",
        "amount": 1880.4,
        "category": "REGULAR",
        "createdAt": "2023-12-04T18:07:19.000Z",
        "id": "22402ab5-4073-427f-adb2-6a5e74a6d5df",
        "type": "CREDIT"
      }
    ]
  },
  "status": true
}

Headers

Authorization
string
required

Set value to 'Bearer {{MERCHANT_SECRET_KEY}}'

Query Parameters

walletId
string

Optional. Search wallet by wallet ID

Example:

"16c8c17b-8a66-4f8b-b195-269e92f831ae"

Response

200 - application/json

Wallet Transactions

The response is of type object.