Adyen · Schema

Nexo

Nexo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
displayUrls object The list of local and public URLs to send display notifications to when using Terminal API.
encryptionKey object The key you share with Adyen to secure local communications when using Terminal API.
eventUrls object The list of local and public URLs to send event notifications to when using Terminal API.
nexoEventUrls array One or more URLs to send event messages to when using Terminal API.
notification object Configures sending event notifications by pressing a button on a terminal, for example used for pay-at-table.
View JSON Schema on GitHub

JSON Schema

management-nexo-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-nexo-schema.json",
  "title": "Nexo",
  "description": "Nexo schema from Adyen API",
  "type": "object",
  "properties": {
    "displayUrls": {
      "description": "The list of local and public URLs to send display notifications to when using Terminal API.",
      "$ref": "#/components/schemas/NotificationUrl"
    },
    "encryptionKey": {
      "description": "The key you share with Adyen to secure local communications when using Terminal API.",
      "$ref": "#/components/schemas/Key"
    },
    "eventUrls": {
      "description": "The list of local and public URLs to send event notifications to when using Terminal API.",
      "$ref": "#/components/schemas/EventUrl"
    },
    "nexoEventUrls": {
      "deprecated": true,
      "x-deprecatedInVersion": "1",
      "x-deprecatedMessage": "Use `eventUrls` instead.",
      "description": "One or more URLs to send event messages to when using Terminal API.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "notification": {
      "description": "Configures sending event notifications by pressing a button on a terminal, for example used for pay-at-table.",
      "$ref": "#/components/schemas/Notification"
    }
  }
}