Skip to main content
GET
/
webhooks
/
{webhookId}
/
deliveries
/
{deliveryId}
Obter uma entrega
curl --request GET \
  --url http://localhost:3001/webhooks/{webhookId}/deliveries/{deliveryId} \
  --header 'Authorization: Bearer <token>'
{
  "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>"
}

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

ID único do webhook.

deliveryId
string
required

ID único da tentativa de entrega.

Response

Default Response

id
string
required

ID único da tentativa de entrega.

webhookId
string
required

ID do webhook a qual esta entrega pertence.

event
string
required

Nome do evento que disparou esta entrega.

status
enum<string>
required

Status atual da entrega. RETRYING significa que uma nova tentativa de entrega está agendada; FAILED significa que todas as tentativas foram esgotadas.

Available options:
PENDING,
SUCCESS,
FAILED,
RETRYING
statusCode
number | null
required

Código de status HTTP retornado pelo servidor de destino (null se ainda não foi entregue).

payload
object
required

O payload JSON exato que foi (ou será) enviado para a URL de destino.

responseBody
string | null
required

Primeiros 10,000 caracteres do corpo da resposta do servidor de destino.

errorMessage
string | null
required

Descrição legível do erro se a entrega falhou.

durationMs
number | null
required

Tempo de ida e volta da entrega em milissegundos.

attemptCount
number
required

Quantas tentativas de entrega foram feitas até o momento.

nextRetryAt
string | null
required

Timestamp ISO 8601 da próxima tentativa de entrega agendada (null se nenhuma tentativa de entrega está pendente).

createdAt
string
required

Timestamp ISO 8601 quando esta entrega foi criada pela primeira vez.

expiresAt
string
required

Timestamp ISO 8601 após o qual este registro será automaticamente deletado (retenção de 90 dias).