Create Webhook Subscription
Create a new webhook subscription.
Request
Body Params application/jsonRequired
{
"endpoint": "http://example.com",
"topics": [
"request.created"
]
}
Request Code Samples
curl --location --request POST '/webhooks' \
--header 'Content-Type: application/json' \
--data-raw '{
"endpoint": "http://example.com",
"topics": [
"request.created"
]
}'
Responses
{
"endpoint": "http://example.com",
"topics": [
"request.created"
],
"id": "string",
"signing_secret": "string"
}
Modified at 2026-01-15 05:36:49