Create Virtual Account
Create virtual account for User
create a virtual account for your sub users
POST METHOD
{{baseUrl}}/api/v2/virtual-account/clients
{
"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": 20.0234,
"accountName": "Akinpelu Taofik",
"accountNo": "8******3",
"bankName": "Clear Junction Limited",
"swift": "CLJUGB21XXX",
"iban": "GBXXCLJU041307********",
"routine": "041307",
"status": "Active",
"created_at": "2022-04-26T22:00:23.000000Z",
"updated_at": "2022-04-27T01:27:05.000000Z"
}
}
}
Updated almost 2 years ago