Track customer event
documentedRecord an event for a customer.
POST /api/v1/customers/{identifier}/eventsPeopleno implementation yet0 runsNo 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://track.customer.io/api/v1/customers/{{$identifier}}/events" \
-X POST \
-u {{SITE_ID}}:{{CUSTOMER_API_KEY}} \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$event_name}}", "timestamp": {{$timestamp}}, "data": {"example_property": "{{$example_property}}"}}'