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"
}
Field | Required | Data Type | Description |
---|---|---|---|
true | User email address | ||
cur | true | String | account 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"
}
}
}
Updated almost 2 years ago