---
title: "Get a specific webhook by ID"
method: GET
path: "/v1/Webhooks/{id}"
tags: ["Webhooks"]
---

# Get a specific webhook by ID

`GET /v1/Webhooks/{id}`

Returns webhook configuration including URL, events, active status, and DisabledReason if auto-disabled. Secret is never included (only shown during creation/regeneration).

## Path parameters

- `id` string, uuid, required

## Response `200`

Webhook details

- DebituraDomainModelWebhooksDtosWebhookDto — Represents a webhook subscription configuration.
  - `id` string, uuid — Unique identifier for the webhook subscription.
  - `url` string, nullable — The HTTPS URL where webhook events will be delivered.
  - `events` string[], nullable — Array of event types this subscription is interested in.
  - `isActive` boolean — Whether this webhook subscription is active.
  - `createdUtc` string, date-time — Timestamp when the webhook subscription was created (UTC).
  - `updatedUtc` string, date-time — Timestamp when the webhook subscription was last updated (UTC).
  - `disabledReason` string, nullable — Reason why the webhook was automatically disabled (if IsActive is false).
  - `secret` string, nullable — Secret key for HMAC-SHA256 signature verification. Only returned on creation or secret regeneration — never exposed again for security.
  - `isTestMode` boolean — True when the subscription has `DataClassification.Test` classification; false for all other classifications (Production, Demo). Computed as `Classification != DataClassification.Production`.

## Other responses

- `401` — API key is missing or invalid
- `404` — Webhook not found or does not belong to this partner

---

[API](https://skmtc.net/debitura/apis/debitura-referral-partner-api.md) · [All operations](https://skmtc.net/debitura/apis/debitura-referral-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/debitura/debitura-referral-partner-api/versions/9c466e0e2bf4/schema)
