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
Developer Portal → Webhooks → Create Webhook
URL: Your webhook endpoint
Events: Select
content.ingested,content.updatedSecret: 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?