Create EUR Local Virtual Account For Individual
Used to issue a local EUR Virtual Account owned by an individual natural person.
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. (Must be separated by a space) |
| addressLine1 | string | Yes | Individual's Address. |
| city | string | Yes | Individual's City |
| country | string | Yes | Individual's Residential address. The 2-letter country code |
| 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": "Individual's Address",
"city": "Individual's City",
"country": "Individual's Country",
"nationality": "Individual's Nationality",
"isIndividual": true,
"iban": "Individual's Iban",
"bicSwift": "Individual's Bic/swift",
"dateOfBirth": "Individual's DoB"
}
]Try it Here
Updated 1 day ago