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


ParameterTypeRequiredDescription
namestringYesIndividual's Name and Surname. (Must be separated by a space)
addressLine1stringYesIndividual's Address.
citystringYesIndividual's City
countrystringYesIndividual's Residential address. The 2-letter country code
nationalitystringYesIndividual's Nationality
dateOfBirthstringYesIndividual's date of birth (YYYY-MM-DD)
isIndividualbooleanYesYes
ibanstringYesIndividual's Iban
bicSwiftstringYesIndividual'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