Alerting & Response/Alert Channels & Integrations
POSTAlertingSince 1.0SynchronousAuth Required
CreateAlertWebhookEndpoint
Create a new webhook endpoint with optional HMAC signing
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
nameStringRequiredHuman-readable name for the endpoint
Example: Slack Webhook
urlStringRequiredTarget URL for webhook delivery
Example: https://hooks.slack.com/services/T00/B00/xxx
signingEnabledBooleanRequiredWhether to enable HMAC signing
Example: true
signingSecretStringRequiredInitial signing secret (auto-generated if empty)
Example: my-secret-key
Responses
Endpoint
POST/api/v1/alerting/webhook-endpoints
/api/v1/alerting/webhook-endpoints
Request Example
curl -X POST '{host}/api/v1/alerting/webhook-endpoints' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"name":"Slack Webhook","url":"https://hooks.slack.com/services/T00/B00/xxx","signingEnabled":true,"signingSecret":"my-secret-key"}'
Response Example
200{
"endpoint": {},
"signingSecretPlaintext": "whsec_abc123def456"
}Change History
This API has no change history records yet.
