Create No Bank Details Virtual Account For Company
Used to create a Virtual Account for a company when external bank details are not provided upfront.
| Parameter | Type | Required | Description |
|---|---|---|---|
| companyName | string | Yes | Corporate entity legal name. |
| registrationNumber | string | Yes | Company registration number. |
| countryOfIncorporation | string | Yes | 2-character ISO country code. |
| address | object | Yes | Registered corporate address. |
Request Body Example
{
"companyName": "Venture Tech Limited",
"registrationNumber": "11223344",
"countryOfIncorporation": "GB",
"address": {
"line1": "10 Canada Square",
"city": "London",
"postcode": "E14 5AA",
"country": "GB"
}
}Try it Here
Updated 1 day ago