---
title: "Get a webhook endpoint"
method: GET
path: "/webhook-endpoints/{endpointId}"
tags: ["Webhooks"]
---

# Get a webhook endpoint

`GET /webhook-endpoints/{endpointId}`

Returns webhook endpoint metadata and a recent delivery summary.

## Path parameters

- `endpointId` string, required — Webhook endpoint identifier.

## Response `200`

Webhook endpoint details.

- WebhookEndpointDetailResponse — Webhook endpoint detail response.
  - `data` WebhookEndpointDetail, required — Webhook endpoint detail.
    - `created_at` string, date-time, required — Endpoint creation timestamp.
    - `delivery_scope` union, required — Webhook endpoint runtime data recipient.
      - object — Member-targeted endpoint delivery scope.
        - `actor_workspace_membership_id` string, required — Workspace membership the endpoint acts as.
        - `direct_message_delivery_enabled` boolean, required — Whether direct-message events are delivered for conversations the actor belongs to.
        - `type` 'workspace_member', required — Delivery scope type.
      - object — Unsupported workspace export placeholder.
        - `status` 'unsupported' | 'requires_approval' | 'approved', required — Workspace export approval state.
        - `type` 'workspace_export', required — Delivery scope type.
    - `disabled_at` string, date-time, nullable, required — Endpoint disabled timestamp.
    - `enabled_events` string[], required — Product event types delivered to this endpoint.
    - `id` string, required — Webhook endpoint identifier.
    - `name` string, nullable, required — Endpoint label.
    - `object` 'webhook_endpoint', required — Object type.
    - `previous_signing_secret_expires_at` string, date-time, nullable, required — Previous secret expiration timestamp.
    - `signing_secret_prefix` string, required — Display-safe prefix of the active signing secret.
    - `status` 'active' | 'disabled', required — Endpoint status.
    - `updated_at` string, date-time, required — Last update timestamp.
    - `url` string, required — Receiver URL.
    - `workspace_id` string, required — Workspace identifier.
    - `delivery_summary` WebhookEndpointDeliverySummary, required — Delivery summary over the endpoint's most recent 100 deliveries.
      - `failed_count` integer, required — Failed delivery count within the most recent 100 deliveries.
      - `in_flight_count` integer, required — In-flight delivery count within the most recent 100 deliveries.
      - `latest_attempted_at` string, date-time, nullable, required — Latest attempt timestamp.
      - `latest_delivery_id` string, nullable, required — Latest delivery identifier.
      - `latest_delivery_status` 'pending' | 'scheduled' | 'in_flight' | 'succeeded' | 'retrying' | 'failed' | 'skipped', nullable, required — Latest delivery status.
      - `latest_failed_at` string, date-time, nullable, required — Latest failure timestamp.
      - `latest_succeeded_at` string, date-time, nullable, required — Latest success timestamp.
      - `pending_count` integer, required — Pending delivery count within the most recent 100 deliveries.
      - `recent_count` integer, required — Number of deliveries summarized, capped at the most recent 100 deliveries.
      - `retrying_count` integer, required — Retrying delivery count within the most recent 100 deliveries.
      - `scheduled_count` integer, required — Scheduled delivery count within the most recent 100 deliveries.
      - `skipped_count` integer, required — Skipped delivery count within the most recent 100 deliveries.
      - `succeeded_count` integer, required — Succeeded delivery count within the most recent 100 deliveries.

## Other responses

- `400` — Bad request.
- `401` — Missing or invalid API key.
- `403` — Forbidden.
- `404` — Not found.
- `409` — Conflict.
- `429` — Rate limit or quota exceeded.
- `500` — Internal server error.

---

[API](https://skmtc.net/ando/apis/ando-public-api.md) · [All operations](https://skmtc.net/ando/apis/ando-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ando/ando-public-api/versions/db1553a00d68/schema)
