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

> Retorna as tentativas de entrega recentes para um endpoint de webhook, da mais recente para a mais antiga.

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

<ParamField path="webhookId" type="string" required>
  UUID do endpoint de webhook.
</ParamField>

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

<ResponseField name="deliveries" type="object[]">
  <Expandable title="campos de entrega">
    <ResponseField name="id" type="string">UUID da entrega.</ResponseField>
    <ResponseField name="event_id" type="string">UUID do evento de origem.</ResponseField>
    <ResponseField name="event_type" type="string">Tipo de evento.</ResponseField>
    <ResponseField name="status" type="string">`PENDING`, `PROCESSING`, `DELIVERED`, `FAILED` ou `DEAD`.</ResponseField>
    <ResponseField name="attempts" type="integer">Número de tentativas realizadas até agora.</ResponseField>
    <ResponseField name="next_retry_at" type="string">Quando a próxima tentativa está agendada (ISO 8601).</ResponseField>
    <ResponseField name="last_response_status" type="integer | null">Status HTTP retornado pelo seu endpoint na última tentativa.</ResponseField>
    <ResponseField name="last_error" type="string | null">Mensagem de erro da última tentativa com falha.</ResponseField>
    <ResponseField name="created_at" type="string">Quando a entrega foi criada.</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>
