Authorizations
Body
application/json
Response
Webhook creado exitosamente.
The response is of type object
.
curl --request POST \
--url https://api.gotrebol.com/v2/webhooks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created",
"verification.v2.finished"
],
"description": "Webhook principal de producción"
}'
{
"id": "wh_123",
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created",
"verification.v2.finished"
],
"status": "enabled",
"description": "Webhook principal de producción",
"secret": "whsec_XXXXXXXXXXXXXXXXXXXXXXXX",
"created_at": "2025-08-20T10:00:00Z",
"updated_at": "2025-08-20T10:00:00Z"
}
Crea un nuevo webhook para tu cuenta. Por seguridad, el secreto solo se muestra una vez en la creación.
curl --request POST \
--url https://api.gotrebol.com/v2/webhooks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created",
"verification.v2.finished"
],
"description": "Webhook principal de producción"
}'
{
"id": "wh_123",
"url": "https://example.com/webhooks/trebol",
"events": [
"verification.v2.created",
"verification.v2.finished"
],
"status": "enabled",
"description": "Webhook principal de producción",
"secret": "whsec_XXXXXXXXXXXXXXXXXXXXXXXX",
"created_at": "2025-08-20T10:00:00Z",
"updated_at": "2025-08-20T10:00:00Z"
}
Webhook creado exitosamente.
The response is of type object
.
Was this page helpful?