FeeTransferRequest
Describes a fee transfer request between two customers.
Transaction amount in minor units.
1000
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters
and <= 3 characters
EUR
recipient object
Contains transfer recipient information. If used in CustomerTransferRequest context, the system tries to resolve email
to customerId
in the system.
Possible values: <= 150 characters
Merchant reference number associated with the transaction.
Possible values: <= 50 characters
5040452805
(In Development) FX Quote ID for the transfer in case currency conversion is required. If not passed currency conversion is not perfomed.
transferDetails object
Represents the details of a fee transfer.
The purpose of the fee transfer.
- CARD_REPLACEMENT_FEE - Fee for replacing a card that is lost, stolen, or damaged.
- CARD_FEE - Fee charged on funds paid on to the card.
- ATM_FEE - Fee for funds withdrawal on ATM.
- INACTIVITY_FEE - Fee charged for lack of transactions or authorizations.
- FX_FEE - Fee related to currency exchange.
- DISPUTE_FEE - Fee charged for resolving disputes related to payments, such as suspected fraud or unfulfilled goods/services.
Possible values: [CARD_REPLACEMENT_FEE
, CARD_FEE
, ATM_FEE
, INACTIVITY_FEE
, FX_FEE
, DISPUTE_FEE
]
Human readable description for the transfer.
Possible values: <= 200 characters
{
"amount": 1000,
"currencyCode": "EUR",
"recipient": {
"customerId": "string",
"email": "user@example.com"
},
"merchantRefNum": "5040452805",
"fxQuote": "string",
"transferDetails": {
"reason": "CARD_REPLACEMENT_FEE",
"description": "string"
}
}