Create event
documentedCreate an Event.
POST /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.{{INSIGHTLY_POD}}.insightly.com/v3.1/Events" \
-X POST \
-H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "start_date_utc": "{{$start_date_utc}}", "end_date_utc": "{{$end_date_utc}}", "location": "{{$location}}", "details": "{{$details}}", "all_day": {{$all_day}}, "owner_user_id": {{$owner_user_id}}, "remainder_date_utc": "{{$remainder_date_utc}}", "remainder_sent": {{$remainder_sent}}, "custom_fields": {{$custom_fields}} }'