GET
/
wallet
Wallet list
curl --request GET \
  --url https://nini.monieswitch.com/wallet \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": {
    "size": 50,
    "page": 1,
    "totalRecords": 1,
    "totalPages": 1,
    "totalDebitAmount": 4140,
    "totalCreditAmount": 25000,
    "totalTransactionValue": 85000,
    "totalTransactionVolume": 5,
    "wallets": [
      {
        "id": "8723d967-1d46-4ead-b011-1bfcb3fbd29a",
        "tier": 1,
        "status": "ACTIVE",
        "accountName": "Ogundeko Ridwan",
        "bookedBalance": 73790,
        "availableBalance": 73790,
        "bankName": "Xpress Wallet",
        "accountNumber": "4469806324",
        "createdAt": "2024-08-13T08:52:39.402Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

size
integer
page
integer
accountNumber
integer
status
string
startDate
integer
endDate
integer

Response

200 - application/json

Wallet list

The response is of type object.