Sign in

Create invitee

documented

Create an invitee to schedule a meeting (the booking step via the API).

POST /inviteesInvitees / Schedulingno 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.calendly.com/invitees" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"event_type": "{{$event_type_uri}}", "start_time": "{{$start_time}}", "invitee": {"name": "{{$invitee_name}}", "first_name": "{{$invitee_first_name}}", "last_name": "{{$invitee_last_name}}", "email": "{{$invitee_email}}", "timezone": "{{$invitee_timezone}}"}, "location": {"kind": "{{$location_kind}}"}, "event_guests": {{$event_guests}}, "tracking": {{$tracking}}}'