Adyen · Schema

EventUrl

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

adyen-eventurl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventUrl",
  "title": "EventUrl",
  "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"
    }
  },
  "type": "object"
}