SEPA Bank Account.

Account holder name might be required for name matching.

interface SepaBankAccount {
    accountHolderName?: string;
    bankName?: string;
    bic: string;
    creationTime: string;
    customerId?: string;
    iban: string;
    id?: string;
    instrumentType: InstrumentType;
    status?: PaymentInstrumentStatus;
}

Hierarchy (view full)

Properties

accountHolderName?: string

This is the name of the customer or company that owns the bank account.

bankName?: string

The bank name.

bic: string

The Bank Account Bank Identifier Code (BIC) code. Also known as SWIFT code.

creationTime: string

Creation time.

Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

Example

"2021-07-15T17:54:12Z"
customerId?: string

The customer to which this instrument belongs.

iban: string

The International Bank Account Number (IBAN) of the account.

id?: string

The instrument id.

instrumentType: InstrumentType

The instrument type.

The instrument status.