Demandbase · Schema

Webhook

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
id string Webhook unique identifier
url string Webhook endpoint URL
events array Event types subscribed to
active boolean Whether the webhook is active
created_at string Creation timestamp
View JSON Schema on GitHub

JSON Schema

demandbase-webhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Webhook",
  "title": "Webhook",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Webhook unique identifier"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Webhook endpoint URL"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Event types subscribed to"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the webhook is active"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    }
  }
}