ZoomInfo · JSON Structure

Zoominfo Webhook Structure

Type: object Properties: 6 Required: 5
B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Webhook is a JSON Structure definition published by ZoomInfo, describing 6 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id title enabled targetUrl createdDate subscriptions

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Webhook",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "targetUrl": {
      "type": "string"
    },
    "createdDate": {
      "type": "string"
    },
    "subscriptions": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "createdDate": {
            "type": "string"
          },
          "modifiedDate": {
            "type": "string"
          },
          "eventType": {
            "type": "string"
          },
          "objectType": {
            "type": "string"
          },
          "fullPayload": {
            "type": "boolean"
          },
          "subscriptionId": {
            "type": "string"
          }
        },
        "required": [
          "createdDate",
          "modifiedDate",
          "eventType",
          "objectType",
          "subscriptionId"
        ]
      }
    }
  },
  "required": [
    "id",
    "enabled",
    "targetUrl",
    "createdDate",
    "subscriptions"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}