---
title: "Get Webhook"
method: GET
path: "/webhooks/{webhook_id}"
tags: ["Webhooks"]
---

# Get Webhook

`GET /webhooks/{webhook_id}`

Retrieves a specific webhook by its ID.

## Path parameters

- `webhook_id` string, uuid, required

## Response `200`

The webhook details.

- Webhook
  - `id` string, uuid — Unique identifier for the webhook.
  - `company_id` string, uuid — Company identifier owning the webhook.
  - `description` string — Description of the webhook.
  - `endpoint_url` string, uri — URL to send the webhook notifications to.
  - `secret_key` string — A secret key used to verify the signature in the X-Signature header of the webhook, ensuring that the webhook request originates from the Income Bureau.
  - `is_active` boolean — Whether the webhook is active.
  - `events` string[] — Array of event types this webhook is subscribed to.
  - `created_at` string, date-time — Timestamp when the webhook was created.
  - `updated_at` string, date-time — Timestamp when the webhook was last updated.
  - `authentication` union — Authentication configuration for the webhook.
    - object
      - `type` 'jwt', required
      - `secret` string, required
      - `expiration_seconds` integer, required
    - object
      - `type` 'custom_headers', required
      - `headers` object, required
    - object
      - `type` 'token_endpoint', required
      - `url` string, uri, required
      - `method` 'GET' | 'POST', required
      - `request_headers` object
      - `request_body` object
      - `response_key` string, required

## Other responses

- `401` — Unauthorized - Invalid or missing API key.
- `404` — Webhook not found.

---

[API](https://skmtc.net/burodeingresos/apis/bur-de-ingresos-api.md) · [All operations](https://skmtc.net/burodeingresos/apis/bur-de-ingresos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/burodeingresos/bur-de-ingresos-api/versions/59e48cdbdd84/schema)
