Adyen · JSON Structure

Management List Webhooks Response Structure

ListWebhooksResponse schema from Adyen API

Type: object Properties: 5 Required: 2
PaymentsFinancial ServicesFintech

ListWebhooksResponse is a JSON Structure definition published by Adyen, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

_links accountReference data itemsTotal pagesTotal

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-list-webhooks-response-structure.json",
  "description": "ListWebhooksResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "_links": {
      "description": "Pagination references.",
      "$ref": "#/components/schemas/PaginationLinks"
    },
    "accountReference": {
      "description": "Reference to the account.",
      "type": "string"
    },
    "data": {
      "description": "The list of webhooks configured for this account.",
      "items": {
        "$ref": "#/components/schemas/Webhook"
      },
      "type": "array"
    },
    "itemsTotal": {
      "description": "Total number of items.",
      "type": "int32"
    },
    "pagesTotal": {
      "description": "Total number of pages.",
      "type": "int32"
    }
  },
  "required": [
    "itemsTotal",
    "pagesTotal"
  ],
  "name": "ListWebhooksResponse"
}