SellerFee
The seller fee CardNexus charged on a sale.
- amountType: object · Moneyrequired
A monetary amount as a decimal in the currency's major unit paired with its currency code —
{ amount: 14.99, currency: "USD" }means $14.99.- amountType: numberrequired
Decimal amount in the currency's major unit (e.g.
5.23for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD. - currencyType: string enumrequiredvalues
- U
S D US Dollar.
- E
U R Euro.
- G
B P British Pound.
- C
A D Canadian Dollar.
- C
H F Swiss Franc.
- percentageType: numberrequired
Your seller-fee rate, as a percentage (e.g.
5for 5%).
Examples
{
"percentage": 5,
"amount": {
"amount": 0.45,
"currency": "EUR"
}
}