Configure Content Ingestion Webhook

User Intent

"How do I get notified when content is ingested? Show me webhook configuration."

Operation

SDK Method: Configure webhook in Developer Portal Use Case: Real-time content ingestion notifications


Configuration

  1. Developer Portal → Webhooks → Create Webhook

  2. URL: Your webhook endpoint

  3. Events: Select content.ingested, content.updated

  4. Secret: Webhook signing secret


Webhook Payload

{
  "event": "content.ingested",
  "contentId": "content-123",
  "name": "document.pdf",
  "type": "FILE",
  "status": "COMPLETED",
  "timestamp": "2024-01-15T10:30:00Z"
}

Handling Webhooks (TypeScript)


Last updated

Was this helpful?