log_meeting
Log a meeting with date, attendees, and description. Link to candidates, contacts, companies, jobs, or deals. Optionally send calendar invites.
Instructions
Log a meeting via POST /v1/meetings.
Dates use ISO 8601 (e.g. 2025-04-29T18:30:00Z).
related_to is the primary anchor entity. Use associated to cross-link
the meeting to additional candidates/companies/contacts/jobs/deals.
attendee_users expects integer user IDs; attendee_contacts and
attendee_candidates expect slug strings.
reminder accepts: -1 (no reminder), 0, 15, 30, 60, 120, 1440 (minutes before).
do_not_send_calendar_invites defaults to True — safe for historical logging;
set False to actually send invites to attendees.
description accepts Markdown — converted to HTML before POST so the
Recruit CRM UI renders bullets/bold/links correctly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| start_date | Yes | ||
| end_date | Yes | ||
| related_to | Yes | Reference to a CRM entity for `related_to`-style linkage. | |
| attendee_contacts | No | ||
| attendee_candidates | No | ||
| attendee_users | No | ||
| description | No | ||
| address | No | ||
| meeting_type_id | No | ||
| reminder | No | ||
| owner_id | No | ||
| associated | No | ||
| do_not_send_calendar_invites | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | ||
| id | Yes | ||
| title | No | ||
| url | No |