> ## 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.

# Obtener webhook

> Devuelve detalle completo de un endpoint webhook incluyendo sus eventos suscritos.

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

<ParamField path="webhookId" type="string" required>UUID del webhook.</ParamField>

<ResponseField name="id" type="string">UUID del webhook.</ResponseField>
<ResponseField name="url" type="string">URL de destino.</ResponseField>
<ResponseField name="events" type="string[]">Tipos de evento suscritos.</ResponseField>
<ResponseField name="status" type="string">`ACTIVE` o `INACTIVE`.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "wep_01j5k...",
    "url": "https://mi-sistema.com/webhooks/boh",
    "events": ["inventory_transaction.completed"],
    "status": "ACTIVE",
    "created_at": "2026-01-01T00:00:00.000Z"
  }
  ```

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