Create International Virtual Account For Individual
Used to issue an International / Cross-border Virtual Account for an individual.
While the Correlation ID is optional, including it is strongly recommended for both client-side and internal BCB systems to ensure seamless end-to-end transaction tracking and easier cross-system debugging.
Required
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Individual's Name and Surname. |
| addressLine1 | string | Yes | Individual's Address. |
| city | string | Yes | Individual's City |
| country | string | Yes | Individual's Country. The 2-letter country code |
| postcode | string | Yes | Individual's Postcode |
| nationality | string | Yes | Individual's Nationality |
| dateOfBirth | string | Yes | Individual's date of birth (YYYY-MM-DD) |
| isIndividual | boolean | Yes | Yes |
| iban | string | Yes | Individual's Iban |
| bicSwift | string | Yes | Individual's Bic/Swift |
Request Body Example
[
{
"name": "Individual's Name and Surname",
"addressLine1": "ndividual's Address.",
"city": "Individual's City",
"postcode": "Individual's Postcode",
"country": "Individual's Country. The 2-letter country code",
"dateOfBirth": "Individual's date of birth (YYYY-MM-DD)",
"isIndividual": true,
"iban": "Individual's Iban",
"bicSwift": "Individual's Bic/Swift",
"nationality": "Individual's Nationality"
}
]Try it Here
Updated 1 day ago