Create event
documentedCreate a custom event for a contact interaction.
POST /v3/eventsEventsno 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://api.brevo.com/v3/events" \
-X POST \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "api-key: {{SENDINBLUE_API_KEY}}" \
-d '{"event_name":"{{$event_name}}","event_date":"{{$event_date}}","identifiers":{"email_id":"{{$email_id}}"},"contact_properties":{"AGE":{{$age}},"GENDER":"{{$gender}}"},"event_properties":{"video_title":"{{$video_title}}","video_description":"{{$video_description}}","duration":{{$duration}},"autoplayed":{{$autoplayed}},"upload_date":"{{$upload_date}}"}}'