Overview
Webhooks let you push Agiled events to any HTTP endpoint in real time. When a contact is created, a deal closes, or an invoice is paid, Agiled sends a POST request to your URL with the event data. Build custom integrations, trigger internal workflows, or feed data to your own systems without polling the API.
Configure
- 1
Create a webhook endpoint. In Agiled, go to Settings > Apps > Webhooks and add a new endpoint with your URL.
- 2
Select events. Choose which Agiled events trigger webhook delivery: contacts, deals, invoices, tasks, etc.
- 3
Verify signature. Use the signing secret to verify webhook payloads in your receiving application.
What you can do
Real-time events
Receive notifications the moment something happens in Agiled. No polling required.
Any endpoint
Send data to any URL: your server, a serverless function, a third-party tool, or a queue.
Event filtering
Subscribe only to the events you care about. Ignore the rest.
Secure delivery
Webhook payloads include a signature for verification so you know they came from Agiled.
Capabilities
Webhooks app features
Event subscriptions
Subscribe to specific event types: created, updated, deleted for any entity.
Payload delivery
JSON payloads delivered via POST to your endpoint.
Signature verification
HMAC signatures on every payload for security.
Retry logic
Failed deliveries are retried with exponential backoff.
Delivery logs
View delivery history, response codes, and retry status.
Multiple endpoints
Configure multiple webhook endpoints for different systems.
FAQ
Webhooks FAQ
Contacts, deals, invoices, tasks, projects, and more. Each entity supports created, updated, and deleted events.
Webhooks are dispatched within seconds of the event. Network latency and your endpoint's response time determine total delivery time.
Agiled retries failed deliveries with exponential backoff over 24 hours. You can view delivery attempts in the webhook logs.
Yes. Use the Test button in the webhook configuration to send a sample payload to your endpoint.
Build real-time integrations
Configure webhooks to push Agiled events to your systems in real time.