Skip to main content
Alerting & Response/Alert Channels & Integrations
GETAlertingSince 1.0SynchronousAuth Required

ListAlertWebhookEndpoints

List all configured webhook endpoints

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of webhook endpoints

    Example: (nested array)

    • idString

      Unique identifier of the webhook endpoint

      Example: wh-001

    • nameString

      Human-readable name for the endpoint

      Example: Slack Webhook

    • urlString

      Target URL for webhook delivery

      Example: https://hooks.slack.com/services/T00/B00/xxx

    • signingEnabledBoolean

      Whether HMAC signing is enabled for this endpoint

      Example: true

    • signingSecretMaskedString

      Masked signing secret (last 4 chars visible)

      Example: ****abc1

    • createdAtString

      Timestamp when the endpoint was created

      Example: 2026-01-15T08:00:00Z

    • updatedAtString

      Timestamp of the last endpoint update

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of webhook endpoints

    Example: 3

  • limitInteger

    Maximum items per page

    Example: 20

  • offsetInteger

    Offset from start of result set

    Example: 20

Endpoint

GET/api/v1/alerting/webhook-endpoints

/api/v1/alerting/webhook-endpoints

Operation ID

ListAlertWebhookEndpoints

Permalink

Request Example

curl -X GET '{host}/api/v1/alerting/webhook-endpoints' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 3,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history