POST
/
v2
/
webhooks
Crear webhook
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"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Response

Webhook creado exitosamente.

The response is of type object.