ZoomInfo · JSON Structure

Zoominfo Update Webhook Request Structure

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

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

Properties

title enabled subscriptions

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

JSON Structure

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