Sign in

Track event

documented

Track a user event with identity and event data to drive messaging and campaigns.

POST /api/v2/events/trackEventsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.getvero.com/api/v2/events/track" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "User-Agent: keychains/1.0" \
  -H "Vero-SoftwareKey: {{GETVERO_API_KEY}}" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"auth_token":"{{GETVERO_API_KEY}}","identity":{"id":"{{$user_id}}","email":"{{$user_email}}"},"event_name":"{{$event_name}}","data":{"product_name":"{{$product_name}}","product_url":"{{$product_url}}"},"extras":{"vero_conv":"{{$vero_conv}}"}}'