Authorizations
Response
Lista de webhooks obtenida exitosamente.
The response is of type object
.
curl --request GET \
--url https://api.gotrebol.com/v2/webhooks \
--header 'x-api-key: <api-key>'
[
{
"id": "wh_123",
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created"
],
"status": "enabled",
"description": "Webhook principal de producción",
"created_at": "2025-08-20T10:00:00Z",
"updated_at": "2025-08-20T10:00:00Z"
}
]
Obtiene la lista de webhooks configurados para tu cuenta. Cada webhook define una URL de destino, eventos suscritos y metadatos para la firma de seguridad.
curl --request GET \
--url https://api.gotrebol.com/v2/webhooks \
--header 'x-api-key: <api-key>'
[
{
"id": "wh_123",
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created"
],
"status": "enabled",
"description": "Webhook principal de producción",
"created_at": "2025-08-20T10:00:00Z",
"updated_at": "2025-08-20T10:00:00Z"
}
]
Lista de webhooks obtenida exitosamente.
The response is of type object
.
Was this page helpful?