Configure webhooks and event-driven integrations with Lindy AI.
For detailed implementation code and configurations, load the reference guide:
Read(${CLAUDE_SKILL_DIR}/references/implementation-guide.md)
| Event | Description | Payload |
|---|---|---|
agent.run.started |
Agent run began | runId, agentId, input |
agent.run.completed |
Agent run finished | runId, output, duration |
agent.run.failed |
Agent run failed | runId, error, errorCode |
automation.triggered |
Automation fired | automationId, input |
agent.created |
New agent created | agentId, name |
agent.deleted |
Agent deleted | agentId |
| Issue | Cause | Solution |
|---|---|---|
| Invalid signature | Wrong secret | Check WEBHOOK_SECRET |
| Timeout | Handler slow | Respond quickly, process async |
| Duplicate events | Retry delivery | Implement idempotency |
Proceed to lindy-performance-tuning for optimization.