Get all Virtual Accounts

You can use this endpoint to fetch all virtual accounts.

GET /v2/gettransactions

GET
https://api.emrrapay.com/v2/getvirtualaccounts

Authorization

This API requires authorization with a Bearer token in the headers, you can get this from your account dashboard under settings > Api Key

Success Response Example

{
  "status": "success",
  "data": [
    {
      "ID": "65",
      "account_id": "1234567890",
      "account_number": "1234567890",
      "account_name": "Ep-New Payment",
      "bank_name": "Amucha MFB",
      "Phone": "08012345678",
      "Email": "newemail1@example.com",
      "Date": "October 16th 2024"
    },
    {
      "ID": "66",
      "account_id": "0987654321",
      "account_number": "0987654321",
      "account_name": "Ep-New Wallet",
      "bank_name": "Amucha MFB",
      "Phone": "08087654321",
      "Email": "newemail2@example.com",
      "Date": "October 16th 2024"
    },
    {
      "ID": "67",
      "account_id": "1122334455",
      "account_number": "1122334455",
      "account_name": "Ep-New Wallet",
      "bank_name": "Amucha MFB",
      "Phone": "08011223344",
      "Email": "newemail3@example.com",
      "Date": "October 18th 2024"
    }
  ]
}