Skip to main content
GET
/
v1
/
customers
/
{id}
/
virtual-accounts
Get virtual accounts for a customer
curl --request GET \
  --url http://localhost:3000/api/v1/customers/{id}/virtual-accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "provider": "<string>",
      "accounts": [
        {
          "bankCode": "<string>",
          "bankName": "<string>",
          "accountNumber": "<string>",
          "accountName": "<string>"
        }
      ],
      "isActive": true,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.inflowafrica.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key starting with gtw_sk_

Path Parameters

id
string<uuid>
required

Customer ID

Response

List of virtual accounts

data
object[]