Skip to main content
GET
/
webhooks
/
{webhookId}
/
deliveries
Listar histórico de entregas
curl --request GET \
  --url http://localhost:3001/webhooks/{webhookId}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "webhookId": "<string>",
      "event": "<string>",
      "status": "PENDING",
      "statusCode": 123,
      "payload": {},
      "responseBody": "<string>",
      "errorMessage": "<string>",
      "durationMs": 123,
      "attemptCount": 123,
      "nextRetryAt": "<string>",
      "createdAt": "<string>",
      "expiresAt": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "totalPages": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.jurichat.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Insira o token JWT no formato: Bearer {token}

Path Parameters

webhookId
string
required

Unique ID of the webhook.

Query Parameters

page
integer
default:1

Número da página (1-indexado).

Required range: x > 0
limit
integer
default:20

Número de registros por página (máximo 100).

Required range: 0 < x <= 100
status
enum<string>

Filtrar por status de entrega.

Available options:
PENDING,
SUCCESS,
FAILED,
RETRYING
event
string

Filtrar por nome de evento (ex.: chat.conversation.created).

Response

Default Response

data
object[]
required
total
number
required

Total de registros que correspondem ao filtro.

page
number
required

Número da página atual.

limit
number
required

Número de registros por página.

totalPages
number
required

Total de páginas.