What are Webhooks?
Webhooks send HTTP POST requests to your server when events happen:- Website created or updated
- Client added
- Invoice paid
- Workflow completed
Configure Webhook URL
- Open Settings in sidebar
- Go to API tab
- Find Webhook section
- Enter your endpoint URL
- Click Save
Test Your Webhook
After saving, Lindo.ai sends a test event to verify your endpoint. Check your server logs to confirm receipt.
Handle Events
Common webhook events:
Best Practices
- Always return 200 for received events
- Implement idempotency for duplicate events
- Log all webhook events
- Set up monitoring for failures
- Use HTTPS endpoints only

