Listar histórico de entregas
curl --request GET \
--url https://api.jurichat.com/webhooks/{webhookId}/deliveries \
--header 'x-jurichat-api-key: <api-key>'{
"data": [
{
"id": "<string>",
"webhookId": "<string>",
"event": "<string>",
"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
}Webhooks
Listar histórico de entregas
Retorna uma lista paginada de tentativas de entrega para um webhook, ordenada pela mais recente primeiro. Registros são mantidos por 90 dias.
GET
/
webhooks
/
{webhookId}
/
deliveries
Listar histórico de entregas
curl --request GET \
--url https://api.jurichat.com/webhooks/{webhookId}/deliveries \
--header 'x-jurichat-api-key: <api-key>'{
"data": [
{
"id": "<string>",
"webhookId": "<string>",
"event": "<string>",
"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
}Authorizations
Chave de API do escritório (criada no painel). Envie o valor no header x-jurichat-api-key.
Path Parameters
Identificador único do webhook.
Query Parameters
Número da página (1-indexado).
Required range:
x > 0Número de registros por página (máximo 100).
Required range:
0 < x <= 100Filtrar por status de entrega.
Available options:
PENDING, SUCCESS, FAILED, RETRYING Filtrar por nome de evento (ex.: chat.conversation.created).
⌘I