Send event
documentedSend in a lead or an event related to a lead.
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.followupboss.com/v1/events" \
-X POST \
-u "{{FOLLOWUPBOSS_API_KEY}}:" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"person": {"id": {{$person_id}}, "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "phone": "{{$phone}}"}, "event": {"type": "{{$event_type}}", "title": "{{$title}}", "notes": "{{$notes}}", "date": "{{$date}}"}, "campaign": {"name": "{{$campaign_name}}", "source": "{{$campaign_source}}"}, "customFields": {"field1": "{{$custom1}}", "field2": "{{$custom2}}"} }'"