v1
latestOpenAPI 3.0.02026-08-067074272.5 KBWebhooks
Register Web Hook
Registers a new Web Hook. Web hooks can be registered to send callbacks when messages are received, sent, or when a contact is created. You can make multiple webhooks from the same event, but not hitting the same url. Webhooks can be used for third party integrations such as Zapier and other partner integrations. Press Callbacks below to see event types.
post/dashboards/{dashboard_id}/hooks
Path parameters
dashboard_idinteger required
Example:121
Id of dashboard
Request body
Example request
{
"target_url": "enter-url-here",
"event": "msg_sent",
"http_verb": "PUT"
}Response
The new webhook
Example response
{
"id": 1414,
"target_url": "https://www.someurl.com/user-defined-public-endpoints/webhook-endpoint",
"event": "msg_sent",
"dashboard_id": 121,
"httpVerb": "PUT"
}