ZoomInfo · Schema

DeleteWebhook

B2BB2B DataCompany DataContact DatabaseContactsDataLead GenerationMarketing IntelligenceSales IntelligenceIntent DataGo-To-MarketData EnrichmentAI AgentsMCP

Properties

Name Type Description
id string
targetUrl string
createdDate string
status string
subscriptions array
View JSON Schema on GitHub

JSON Schema

zoominfo-delete-webhook-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "500123"
    },
    "targetUrl": {
      "type": "string",
      "example": "https://www.example.com/resource"
    },
    "createdDate": {
      "type": "string",
      "example": "2025-03-15T14:30:00Z"
    },
    "status": {
      "type": "string",
      "example": "active"
    },
    "subscriptions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "createdDate": {
            "type": "string",
            "example": "2025-03-15T14:30:00Z"
          },
          "modifiedDate": {
            "type": "string",
            "example": "2025-03-15T14:30:00Z"
          },
          "eventType": {
            "type": "string",
            "example": "standard"
          },
          "objectType": {
            "type": "string",
            "example": "standard"
          },
          "fullPayload": {
            "type": "boolean",
            "example": true
          },
          "subscriptionId": {
            "type": "string",
            "example": "500123"
          }
        },
        "required": [
          "createdDate",
          "modifiedDate",
          "eventType",
          "objectType",
          "fullPayload",
          "subscriptionId"
        ]
      }
    }
  },
  "required": [
    "id",
    "targetUrl",
    "createdDate",
    "status",
    "subscriptions"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeleteWebhook"
}