Webhooks

Receive real-time notifications when events occur in your Auralytik account.

Available Events

EventDescription
conversation.createdNew conversation started
conversation.completedConversation ended and processed
analysis.completedAI analysis finished
alert.triggeredCompliance or quality alert fired
evaluation.createdNew evaluation submitted
agent.completedAI agent finished processing

Payload Example

{
  "event": "conversation.completed",
  "timestamp": "2024-01-15T10:30:00Z",
  "data": {
    "conversation_id": "conv_123",
    "channel": "whatsapp",
    "duration": 245,
    "analysis": {
      "sentiment": "positive",
      "topics": ["billing", "upgrade"]
    }
  }
}

Full webhook docs coming soon

Signature verification, retry policies, and complete payload schemas are being documented.

Request API Access