Available Virtual Account Currency
List available virtual account for a User
Get list of all virtual account currencies available for a specific user to create
GET METHOD
{{baseUrl}}/api/v2/virtual-account/clients/available/{{email}}
Parameter
Params | Required | Data Type | Description |
---|---|---|---|
true | User email address |
Response
{
"status": true,
"content": {
"data": [
{
"cur": "NGN",
"currency": "Naira",
"country": "Nigeria",
"amount": "0",
"singleLimit": "1000000000",
"monthlyLimit": "100000",
"allLimit": "0",
"monthlyLimitPrice": "0"
},
{
"cur": "EUR",
"currency": "Euro",
"country": "Europe",
"amount": "0",
"singleLimit": null,
"monthlyLimit": null,
"allLimit": null,
"monthlyLimitPrice": null
},
{
"cur": "GBP",
"currency": "Pounds",
"country": "United Kingdom",
"amount": "0",
"singleLimit": "0",
"monthlyLimit": "0",
"allLimit": "0",
"monthlyLimitPrice": "0"
}
]
}
}
Updated almost 2 years ago