---
title: "Retrieve a webhook"
method: GET
path: "/v1/webhooks/{id}"
tags: ["Webhooks"]
---

# Retrieve a webhook

`GET /v1/webhooks/{id}`

Retrieves the webhook endpoint with the given ID.

---

#### See also  
Learn more about [Webhooks](./webhooks-guide)

## Path parameters

- `id` string, uuid, required

## Response `200`

A webhook registered with the workspace

**ℹ️ Click to see full payload**

- Webhook
  - `id` string, uuid, required
  - `name` string, required
  - `status` 'online' | 'offline', required
  - `type` 'user' | 'system', required — `system` webhooks are hidden from console app.
  - `events` string[], required
  - `url` string, url, required
  - `secret` string, required — A secret token used to sign the webhook payload.
  - `created_at` string, date-time, required — Creation date Date time in format [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) (`yyyy-MM-ddTHH:mm:ss.S+X` eg `2023-01-31T13:30:00.000Z`)
  - `updated_at` string, date-time, required — Latest update date Date time in format [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) (`yyyy-MM-ddTHH:mm:ss.S+X` eg `2023-01-31T13:30:00.000Z`)

## Other responses

- `400` — The request is either malformed or contain invalid parameters. - Make sure the identifier specified in the URL is a valid UUID
- `404` — No webhook can be found.

---

[API](https://skmtc.dev/dotfile/apis/api-specifications.md) · [All operations](https://skmtc.dev/dotfile/apis/api-specifications/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/dotfile/api-specifications/revisions/36393567057b/schema)
