API 端点Webhooks
列出 Webhook
认证
BearerAuth 认证Bearer <token>
位置: header
Query 参数
active?boolean
Filter by status. Omit to return both active and inactive webhooks.
响应体
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"
}
]
}