Adyen · Schema

PayAtTable

PayAtTable schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
authenticationMethod string Allowed authentication methods: Magswipe, Manual Entry.
enablePayAtTable boolean Enable Pay at table.
paymentInstrument string Sets the allowed payment instrument for Pay at table transactions. Can be: **cash** or **card**. If not set, the terminal presents both options.
View JSON Schema on GitHub

JSON Schema

management-pay-at-table-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-pay-at-table-schema.json",
  "title": "PayAtTable",
  "description": "PayAtTable schema from Adyen API",
  "type": "object",
  "properties": {
    "authenticationMethod": {
      "description": "Allowed authentication methods: Magswipe, Manual Entry.",
      "enum": [
        "MAGSWIPE",
        "MKE"
      ],
      "type": "string"
    },
    "enablePayAtTable": {
      "description": "Enable Pay at table.",
      "type": "boolean"
    },
    "paymentInstrument": {
      "description": "Sets the allowed payment instrument for Pay at table transactions.  Can be: **cash** or **card**. If not set, the terminal presents both options.",
      "enum": [
        "Cash",
        "Card"
      ],
      "type": "string"
    }
  }
}