> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fire.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Get webhook

> Returns a single webhook endpoint by ID. The signing secret is not returned after creation.

<ParamField header="x-api-key" type="string" required>
  BOH API key with `admin:webhooks` scope.
</ParamField>

<ParamField path="webhookId" type="string" required>
  Webhook endpoint UUID.
</ParamField>

<ResponseField name="endpoint" type="object">
  Webhook endpoint: `id`, `url`, `events`, `is_active`, `disabled_reason`, `consecutive_failures`, `created_at`, `updated_at`.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "endpoint": {
      "id": "wep_01j5k...",
      "url": "https://yourapp.com/webhooks/boh",
      "events": ["inventory_transaction.completed"],
      "is_active": true,
      "disabled_reason": null,
      "consecutive_failures": 0,
      "created_at": "2026-07-01T09:00:00.000Z",
      "updated_at": "2026-07-01T09:00:00.000Z"
    }
  }
  ```

  ```json 404 theme={null}
  {
    "error": {
      "kind": "webhook_not_found",
      "message": "Webhook endpoint not found"
    }
  }
  ```
</ResponseExample>
