Request for a transfer between customers or a currency exchange.

interface CustomerTransferRequest {
    amount: number;
    currencyCode: string;
    deviceInfo?: DeviceInfo;
    fxQuote?: string;
    merchantRefNum?: string;
    recipient: CustomerTransferRecipient;
    transferDetails: TransferDetails;
}

Properties

amount: number

The amount to be transferred in major units.

currencyCode: string

The transfer currency. Currency alphabetic code as specified by ISO 4217.

Example

"EUR"
deviceInfo?: DeviceInfo

Information about the device that the end-customer uses to access the service.

fxQuote?: string

The Id of the FxRate quote to be used, if the transfer is an exchange.

merchantRefNum?: string

The merchant reference number associated with the transaction.

The transfer recipient.

transferDetails: TransferDetails

The transfer details, including the transfer reason.