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

GetAlertWebhookEndpoint

Retrieve details of a specific webhook endpoint

Execution Availability

Try It Out

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

Path Parameters

Request Inputs

Path Parameters

  • endpointIdStringRequired

    Endpoint identifier to retrieve

Responses

200 OK

On success, this API returns the following response structure.

  • 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

Endpoint

GET/api/v1/alerting/webhook-endpoints/{endpointId}

/api/v1/alerting/webhook-endpoints/{endpointId}

Operation ID

GetAlertWebhookEndpoint

Permalink

Request Example

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

Response Example

200
{
  "id": "wh-001",
  "name": "Slack Webhook",
  "url": "https://hooks.slack.com/services/T00/B00/xxx",
  "signingEnabled": true,
  "signingSecretMasked": "****abc1",
  "createdAt": "example",
  "updatedAt": "example"
}

Change History

This API has no change history records yet.

View all change history