tasks_create
Create a task, event, or meeting. • task — has dueAt + optional recurrence (daily/weekly/monthly/yearly/weekdays). • event — has startAt + endAt. • meeting — has startAt + endAt + location. Title is required. Link to a contact (contactId), company (companyId), or deal (dealId).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Default: task. | |
| dueAt | No | ISO 8601 — when the task is due (for kind=task). | |
| endAt | No | ISO 8601 — end time (for event/meeting). | |
| notes | No | ||
| title | Yes | ||
| dealId | No | ||
| startAt | No | ISO 8601 — start time (for event/meeting). | |
| location | No | For meetings. | |
| companyId | No | ||
| contactId | No | ||
| recurrence | No | Repeat rule for kind=task. One of: daily, weekly, monthly, yearly, weekdays. Repeats relative to dueAt — e.g. dueAt on a Monday with "weekly" repeats every Monday. RRULE strings are NOT supported. Omit for a one-off task. |