Introduction
Webhooks are a way for two applications to communicate with each other in real-time. When an event occurs in one application, a webhook can be used to send a payload of data to a URL specified by the other application. The receiving application can then take action based on the data in the payload.Manage your Webhook endpoint’s here
Usage
Supported Events
The following events are currently supported by our Webhook:- Lead Events:
lead.create
,lead.update
,lead.delete
- Lead Activity Events:
lead.status.update
,lead.lists.update
,lead.tags.update
,lead.track
,lead.task.create
,lead.task.update
,lead.task.delete
,lead.note.create
,lead.note.update
,lead.note.delete
- List Events:
list.create
,list.update
,list.delete
- Status Events:
status.create
,status.update
,status.delete
- Tag Events:
tag.create
,tag.update
,tag.delete
Payload
The payload of a webhook contains the data that is being sent from one application to another. Here is a sample payload:- id_space: The ID of the space that the event occurred in.
- event: The event that occurred.
- secret: A secret value that is included in the payload to verify the source of the webhook.
- payload: The data that is being sent with the webhook. The structure of this data will depend on the event that occurred.