Skip to main content
GET
/
webhooks
Listar webhooks
curl --request GET \
  --url http://localhost:3001/webhooks/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "officeId": "<string>",
    "name": "<string>",
    "description": "<string>",
    "url": "<string>",
    "events": [
      "<string>"
    ],
    "isActive": true,
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "stats": {
      "totalDeliveries": 123,
      "successCount": 123,
      "failedCount": 123,
      "successRate": 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}

Response

Default Response

id
string
required

ID único do webhook.

officeId
string
required

ID do escritório ao qual este webhook pertence.

name
string
required

Nome do webhook.

description
string | null
required

Descrição do webhook.

url
string
required

URL de destino para entregas de eventos.

events
string[]
required

Lista de nomes de eventos inscritos.

isActive
boolean
required

Se este webhook está ativo.

createdAt
string
required

Timestamp de criação ISO 8601.

updatedAt
string
required

Timestamp de última atualização ISO 8601.

stats
object
required

Estatísticas de entrega para este webhook.