Adyen · Schema

EventUrl

EventUrl schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

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

JSON Schema

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