---
title: "webhooks/:id"
method: GET
path: "/webhooks/{id}"
tags: ["webhooks"]
---

# webhooks/:id

`GET /webhooks/{id}`

Get info about a webhook

## Path parameters

- `id` string, required

## Response `200`

200

- Webhook[]
  - `uuid` string — The unique identifier for this webhook.
  - `url` string, required — The webhook server endpoint that was provided.
  - `hmac` string — A secret that can be used to verify the signature of the webhook.
  - `basicAuth` string — The basic auth credentials that will be used to POST to the webhook URL.
  - `retryType` 'circuit-breaker' | 'exponential' — The retry configuration for this webhook endpoint to use. The default is circuit-breaker.
  - `eventTypes` string[] — The set of event types this webhook is subscribed to.
  - `state` string — The current state of the webhook. "FAILED" | "INACTIVE"
  - `failedCount` number — The number of consecutive failures this webhook has made.
  - `lastMomentPushed` string — The ISO 8601 time of the last moment an event was pushed to the webhook server.
  - `domainId` string — The domain ID this webhook is associated with.
  - `createdAt` string — The ISO 8601 time of when this webhook was created.
  - `updatedAt` string — The ISO 8601 time of when this webhook was last updated.

## Other responses

- `400` — 400

---

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