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

# Listar entregas de webhook

> Devuelve los intentos de entrega recientes para un endpoint de webhook, del más reciente al más antiguo.

<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 endpoint de webhook.
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Número de entregas a devolver (1–100).
</ParamField>

<ResponseField name="deliveries" type="object[]">
  <Expandable title="campos de entrega">
    <ResponseField name="id" type="string">UUID de la entrega.</ResponseField>
    <ResponseField name="event_id" type="string">UUID del evento origen.</ResponseField>
    <ResponseField name="event_type" type="string">Tipo de evento.</ResponseField>
    <ResponseField name="status" type="string">`PENDING`, `PROCESSING`, `DELIVERED`, `FAILED` o `DEAD`.</ResponseField>
    <ResponseField name="attempts" type="integer">Número de intentos realizados hasta ahora.</ResponseField>
    <ResponseField name="next_retry_at" type="string">Cuándo está programado el próximo intento (ISO 8601).</ResponseField>
    <ResponseField name="last_response_status" type="integer | null">Código HTTP devuelto por tu endpoint en el último intento.</ResponseField>
    <ResponseField name="last_error" type="string | null">Mensaje de error del último intento fallido.</ResponseField>
    <ResponseField name="created_at" type="string">Cuándo se creó la entrega.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "deliveries": [
      {
        "id": "del_01j5k...",
        "event_id": "evt_01j5k...",
        "event_type": "inventory_transaction.completed",
        "status": "DELIVERED",
        "attempts": 1,
        "next_retry_at": null,
        "last_response_status": 200,
        "last_error": null,
        "created_at": "2026-08-07T14:30:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
