create_task
Create a task in a Planner bucket: required plan, bucket, and title. Optionally set description, dates, priority, assignments, and categories.
Instructions
Create a new task in a bucket
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title | |
| planId | Yes | Plan ID | |
| bucketId | Yes | Bucket ID where to create the task | |
| priority | No | Priority: 1=urgent, 3=important, 5=medium, 9=low (optional) | |
| assignments | No | Assignments keyed by user ID. Use null to remove, or plannerAssignment object to add/update. | |
| description | No | Task description (optional) | |
| dueDateTime | No | Due date in ISO 8601 format (optional) | |
| startDateTime | No | Start date in ISO 8601 format (optional) | |
| percentComplete | No | Percentage of task completion 0-100 (optional) | |
| appliedCategories | No | Labels/categories as JSON string with category names as keys and boolean values. To ADD a tag set it to true (e.g., '{"category1":true}'). To REMOVE a tag you MUST set it to false (e.g., '{"category1":false}') — sending {} will NOT remove anything. |