Webhooks
Create outbound webhook
Creates an outbound webhook endpoint. The signing secret is returned only in this response.
post/webhooks
Request body
Example request
{
"name": "Production webhook",
"url": "https://example.com/sequenzy/webhooks"
}Response
Created
Example response
{
"webhook": {
"id": "webhook_abc123",
"name": "Production webhook",
"url": "https://example.com/sequenzy/webhooks",
"signingSecret": "whsec_...",
"signingSecrets": [
{
"id": "sec_abc123",
"prefix": "whsec_abcd12"
}
]
}
}