---
title: "Historial de entregas"
method: GET
path: "/v1/webhooks/{webhookId}/logs"
tags: ["Webhooks"]
---

# Historial de entregas

`GET /v1/webhooks/{webhookId}/logs`

Devuelve el historial de entregas (delivery log) de un webhook. Cada entrada registra
el resultado de un intento de entrega: URL, evento, payload enviado, status HTTP de respuesta,
y si fue exitoso o no. Útil para debugging.

## Path parameters

- `webhookId` string, required

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

Lista de entregas

- WebhookDeliveryLog[]
  - `id` string — ID del registro de entrega.
  - `webhookId` string — ID de la suscripción de webhook.
  - `url` string, uri — URL a la que se intentó entregar.
  - `event` string — Tipo de evento entregado
  - `payload` object — Body JSON enviado al endpoint
  - `statusCode` integer, nullable — HTTP status de la respuesta (null si no hubo respuesta)
  - `responseBody` string, nullable — Body de la respuesta del servidor
  - `errorMessage` string, nullable — Mensaje de error (null si exitoso)
  - `success` boolean — Indica si la entrega fue exitosa.
  - `createdAt` string, date-time — Fecha y hora del intento de entrega.

## Other responses

- `404` — Webhook no encontrado

---

[API](https://skmtc.net/cliengo/apis/cliengo-public-api.md) · [All operations](https://skmtc.net/cliengo/apis/cliengo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cliengo/cliengo-public-api/revisions/94c7ba7d6a11/schema)
