Webhooks
Use the REST API to interact with Webhooks
Webhooks will be triggered when specific events occur.
We currently support the following webhook events:
lead.created
Triggered when a lead has been created
lead.quality_score.created
Triggered when a quality score has been created for a lead
lead.quality_score.updated
Triggered when the quality score of a lead has been updated
Creating a new webhook
Add a new webhook for lead.created event
The event for which the webhook will be triggered
The URL to which the webhook will send the payload
https://example.com/webhook-receiver
The HTTP verb to be used when sending the payload (e.g., POST, GET, PUT, DELETE)
Request content type
application/json
Webhook created successfully
Invalid input
POST /public/webhooks HTTP/1.1
Host: api2.engineroom.com.au
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: application/json
No content
Deleting a webhook
Delete an existing webhook by ID
The ID of the webhook to be deleted
296130fc-6fa5-48db-a571-925d60309ed1
Request content type
application/json
Webhook deleted successfully
Invalid input
DELETE /public/webhooks/{id} HTTP/1.1
Host: api2.engineroom.com.au
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: application/json
No content
Last updated