Skip to main content
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

x-jurichat-api-key
string
header
required

Chave de API do escritório (criada no painel). Envie o valor no header x-jurichat-api-key.

Path Parameters

webhookId
string
required

Identificador único do 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.