create_task
Add a task to a list by providing the list ID and title, with optional due date, priority, status, assignees, and custom fields.
Instructions
Create a new task in a list. The list_id is required and determines the workspace automatically. If user provides list name instead of ID, first call list_lists to resolve it. For better context, consider calling list_statuses to get available status options before creating. To assign users, call list_members first to get user IDs, then pass them in assignee_ids. To set custom field values, call list_custom_fields first to get field IDs, then pass them in custom_fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title | |
| list_id | Yes | List ID to add task to (required) | |
| due_date | No | Due date (ISO 8601 format) | |
| priority | No | Task priority | |
| status_id | No | Status ID | |
| start_date | No | Start date (ISO 8601 format) | |
| description | No | Task description (HTML) | |
| assignee_ids | No | User IDs to assign to the task. Use list_members to resolve member IDs. | |
| custom_fields | No | Custom field values to set. Use list_custom_fields to get field IDs and types. |