BaseTransferRequest
amountint64required
Transaction amount in minor units.
Example:
1000
currencyCodeCurrency (string)required
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters
and <= 3 characters
Example:
EUR
recipient object
Contains transfer recipient information. If used in CustomerTransferRequest context, the system tries to resolve email
to customerId
in the system.
customerIdstring
emailemail
Possible values: <= 150 characters
merchantRefNumstring
Merchant reference number associated with the transaction.
Possible values: <= 50 characters
Example:
5040452805
fxQuotestring
(In Development) FX Quote ID for the transfer in case currency conversion is required. If not passed currency conversion is not perfomed.
BaseTransferRequest
{
"amount": 1000,
"currencyCode": "EUR",
"recipient": {
"customerId": "string",
"email": "user@example.com"
},
"merchantRefNum": "5040452805",
"fxQuote": "string"
}