Skip to Content
WebhooksListar webhooks

Listar webhooks

GET/v1/webhooks
🔒 Requer Bearer token

Escopo webhooks:read.

Respostas
200Webhooks ativos do parceiro (sem `secret`).
401Token ausente ou inválido (`CREDENCIAL_INVALIDA`).
Request
curl -X GET 'http://localhost:3101/v1/webhooks' \
  -H 'Authorization: Bearer SEU_TOKEN'
Response
[
  {
    "id": "b3d9f0a1-2c34-4e56-8a90-1b2c3d4e5f60",
    "url": "https://parceiro.com.br/webhooks/socinal",
    "eventos": [
      "averbacao.concluida",
      "desembolso.liquidado"
    ],
    "ativo": true,
    "criado_em": "2026-06-20T13:45:00.000Z"
  }
]