Create No Bank Details Virtual Account For Individual
Used to create a Virtual Account for an individual when external bank details are not required upfront.
| Parameter | Type | Required | Description |
|---|---|---|---|
| firstName | string | Yes | First name. |
| lastName | string | Yes | Last name. |
| dateOfBirth | string | Yes | Date of birth (YYYY-MM-DD). |
| address | object | Yes | Residential address. |
Request Body Example for both Local EUR and GBP
[
{
"name": "No Bank",
"addressLine1": "London HQ",
"city": "Pta",
"country": "ZA",
"nationality": "ZA",
"isIndividual": false
}
]Request Body Example for International rails
[
{
"name": "No Bank",
"addressLine1": "London HQ",
"city": "za",
"postcode": "xxxxx",
"country": "ZA",
"nationality": "ZA",
"isIndividual": false
}
]Try it Here
Updated 1 day ago