absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Interface BankRequest

    Inputs for registering a fiat bank account as an off-ramp destination.

    interface BankRequest {
        address?: string;
        bankAccountName: string;
        bankName: string;
        countryId: number;
        file: DocFile;
        iban: string;
        remittanceLineNumber?: string;
        swift?: string;
    }
    Index

    Properties

    address?: string

    Bank/branch address, when required. Optional.

    bankAccountName: string

    Account holder name exactly as it appears on the bank record. Required.

    bankName: string

    Name of the receiving bank. Required.

    countryId: number

    Numeric country id of the bank (from OffRamp.countries). Required.

    file: DocFile

    A supporting document (base64) proving ownership of the account. Required.

    iban: string

    IBAN (or local account number) of the destination account. Required.

    remittanceLineNumber?: string

    Remittance line/reference number, when required. Optional.

    swift?: string

    SWIFT/BIC code, when required for the corridor. Optional.