Endpoints da APIWebhooks
Listar webhooks
Autorização
BearerAuth AutorizaçãoBearer <token>
Em: header
Parâmetros de query
active?boolean
Filtra por status. Omita para retornar webhooks ativos e inativos.
Corpo da resposta
application/json
curl -X GET "https://api.exemplo.processamento.com/v1/user/webhooks?active=true"{
"webhooks": [
{
"id": "kx7m2p9q4r8t1v5w3y6z0a2b",
"url": "https://seusite.com.br/webhooks/pix",
"active": true,
"events": [
"TRANSACTION_COMPLETED",
"TRANSACTION_REFUNDED"
],
"hasSecret": true,
"createdAt": "2026-05-06T13:45:12.000Z",
"updatedAt": "2026-05-06T13:45:12.000Z"
}
]
}