GET
/
virtual-accounts
/
list
Virtual Accounts
curl --request GET \
  --url https://nini.monieswitch.com/virtual-accounts/list \
  --header 'Authorization: <authorization>'
{
  "data": {
    "accounts": [
      {
        "accountName": "Omar Marmoush",
        "accountNumber": "4490281930",
        "amount": "200",
        "bankName": "Xpress Wallet",
        "createdAt": "2023-12-05T18:14:42.334Z",
        "customerReference": "dS0xqm9ibC4cjBJSpNiOs9aj9",
        "paymentMade": false
      },
      {
        "accountName": "Tester one",
        "accountNumber": "4425689879",
        "amount": "200",
        "bankName": "Xpress Wallet",
        "createdAt": "2023-12-02T15:37:31.074Z",
        "customerReference": "8tirEzU3iY2xEtwDzHgrTSR7P",
        "paymentMade": false
      }
    ],
    "currentPage": 1,
    "perPage": 20,
    "totalRecords": 2
  },
  "status": true
}

Headers

Authorization
string
required

Set value to 'Bearer {{MERCHANT_SECRET_KEY}}'

Query Parameters

page
integer

The page number to return. Defaults to 1.

page_size
integer

The limit of items to return per page. Defaults to 10.

accountNumber
string

Optional. Search wallet by account number

Example:

"2281427675"

Response

200 - application/json

Virtual Accounts

The response is of type object.