ZoomInfo · Schema

UpdateWebhookRequest

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales Intelligence

Properties

Name Type Description
title string
enabled boolean
subscriptions array
View JSON Schema on GitHub

JSON Schema

zoominfo-update-webhook-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "example": "Vice President of Sales"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "subscriptions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "subscriptionId": {
            "type": "string",
            "example": "500123"
          },
          "objectType": {
            "type": "string",
            "example": "standard"
          },
          "fullPayload": {
            "type": "boolean",
            "example": true
          }
        },
        "required": [
          "subscriptionId",
          "objectType",
          "fullPayload"
        ]
      }
    }
  },
  "required": [
    "title",
    "enabled",
    "subscriptions"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateWebhookRequest"
}