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

ParameterTypeRequiredDescription
namestringYesIndividual's Name and Surname.
addressLine1stringYesIndividual's Address.
citystringYesIndividual's City
countrystringYesIndividual's Country. The 2-letter country code
postcodestringYesIndividual's Postcode
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": "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