Adyen · Schema

WebhookLinks

WebhookLinks schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
company object The company account that the webhook is configured for. Only present for company-level webhooks.
generateHmac object Generate an HMAC key.
merchant object The merchant account that the webhook is configured for. Only present for merchant-level webhooks.
self object Link to the resource itself.
testWebhook object Test the webhook setup.
View JSON Schema on GitHub

JSON Schema

management-webhook-links-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-webhook-links-schema.json",
  "title": "WebhookLinks",
  "description": "WebhookLinks schema from Adyen API",
  "type": "object",
  "properties": {
    "company": {
      "description": "The company account that the webhook is configured for. Only present for company-level webhooks.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "generateHmac": {
      "description": "Generate an HMAC key.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "merchant": {
      "description": "The merchant account that the webhook is configured for. Only present for merchant-level webhooks.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "self": {
      "description": "Link to the resource itself.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "testWebhook": {
      "description": "Test the webhook setup.",
      "$ref": "#/components/schemas/LinksElement"
    }
  },
  "required": [
    "self",
    "testWebhook",
    "generateHmac"
  ]
}