SellerFee

The seller fee CardNexus charged on a sale.

  • amount
    Type: object · Money
    required

    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.

    • amount
      Type: number
      required

      Decimal amount in the currency's major unit (e.g. 5.23 for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD.

    • currency
      Type: string enum
      required
      values
      • USD

        US Dollar.

      • EUR

        Euro.

      • GBP

        British Pound.

      • CAD

        Canadian Dollar.

      • CHF

        Swiss Franc.

  • percentage
    Type: number
    required

    Your seller-fee rate, as a percentage (e.g. 5 for 5%).

Examples
{
  "percentage": 5,
  "amount": {
    "amount": 0.45,
    "currency": "EUR"
  }
}