View Virtual Account (Currency)

View a virtual account for User with currency

Get a display for the a single virtual account details of a sub user in respect to currency

📘

POST METHOD

{{baseUrl}}/api/v2/virtual-account/clients/view
{
    "email": "[email protected]",
    "cur":"EUR"
}
FieldRequiredData TypeDescription
emailtrueemailUser email address
curtrueStringaccount to be debited. Length: 3, Currency ISO code i.e USD.

👍

Response

{
    "status": true,
    "content": {
        "data": {
            "cur": "EUR",
            "currency": "Euro",
            "country": "Europe",
            "balance": 38.49161,
            "accountName": "Akinpelu Taofik",
            "accountNo": "80******",
            "bankName": "Clear Junction Limited",
            "swift": "CLJUGB21XXX",
            "iban": "GBXXCLJU04130780******",
            "routine": "041307",
            "status": 1,
            "created_at": "2022-04-26T22:00:23.000000Z",
            "updated_at": "2022-04-27T01:27:05.000000Z"
        }
    }
}