Adyen · Schema

NotificationUrl

NotificationUrl schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
localUrls array One or more local URLs to send notifications to when using Terminal API.
publicUrls array One or more public URLs to send notifications to when using Terminal API.
View JSON Schema on GitHub

JSON Schema

management-notification-url-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-notification-url-schema.json",
  "title": "NotificationUrl",
  "description": "NotificationUrl schema from Adyen API",
  "type": "object",
  "properties": {
    "localUrls": {
      "description": "One or more local URLs to send notifications to when using Terminal API.",
      "items": {
        "$ref": "#/components/schemas/Url"
      },
      "type": "array"
    },
    "publicUrls": {
      "description": "One or more public URLs to send notifications to when using Terminal API.",
      "items": {
        "$ref": "#/components/schemas/Url"
      },
      "type": "array"
    }
  }
}