Adyen · Schema

Surcharge

PaymentsFinancial ServicesFintech

Properties

Name Type Description
askConfirmation boolean Show the surcharge details on the terminal, so the shopper can confirm.
configurations array Surcharge fees or percentages for specific payment methods, funding sources (credit or debit), and currencies.
View JSON Schema on GitHub

JSON Schema

adyen-surcharge-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Surcharge",
  "title": "Surcharge",
  "properties": {
    "askConfirmation": {
      "description": "Show the surcharge details on the terminal, so the shopper can confirm.",
      "type": "boolean"
    },
    "configurations": {
      "description": "Surcharge fees or percentages for specific payment methods, funding sources (credit or debit), and currencies.",
      "items": {
        "$ref": "#/components/schemas/Configuration"
      },
      "type": "array"
    }
  },
  "type": "object"
}