v1
latestOpenAPI 3.0.32026-07-24235275.4 KBWebhooks
Create webhook
Make an API call to this endpoint to subscribe to a webhook.
Events are a collection of strings of the following types:
- sms.subscribed
- sms.sent
- sms.message_link_click
- email.subscribed
- email.unsubscribed
- email.message_link_click
- email.opened
- custom_attribute.set
Event types are case sensitive.
All events included will be sent to the URL.
post/webhooks
Request body
Example request
{
"url": "https://example.com/webhooks",
"events": [
"sms.sent",
"phone.subscribed"
]
}Response
Webhook has been created
Example response
{
"id": "MjU6Q29tcGFueUFwcGxpY2F0aW9uV2ViaG9vazIy",
"url": "https://example.com/webhooks",
"events": [
"sms.sent",
"phone.subscribed"
]
}