List Alert Endpoints
Response
Create an Alert Endpoint
Request Body
Response
201 Created
Delete an Alert Endpoint
Response
204 No Content
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API endpoints for managing security alert webhooks
GET /api/org-alert-endpoints
[
{
"id": "ep_01hx...",
"url": "https://hooks.example.com/charley",
"description": "PagerDuty integration",
"created_at": "2025-10-01T00:00:00Z"
}
]
POST /api/org-alert-endpoints
{
"url": "https://hooks.example.com/charley",
"description": "PagerDuty integration"
}
| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | HTTPS URL to send alerts to |
description | string | No | Human-readable label |
201 Created
{
"id": "ep_01hx...",
"url": "https://hooks.example.com/charley",
"description": "PagerDuty integration",
"created_at": "2025-10-14T18:00:00Z"
}
DELETE /api/org-alert-endpoints/:id
204 No Content
| Code | Description |
|---|---|
403 | Caller does not have ORG_ADMIN role |
404 | Endpoint not found or belongs to a different org |