create-task
Add a new task to a Microsoft Todo list with details like title, description, due date, priority, reminders, and status. Requires list ID and task title for creation.
Instructions
Create a new task in a specific Microsoft Todo list. A task is the main todo item that can have a title, description, due date, and other properties.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Description or body content of the task | |
| categories | No | Categories associated with the task | |
| dueDateTime | No | Due date in ISO format (e.g., 2023-12-31T23:59:59Z) | |
| importance | No | Task importance | |
| isReminderOn | No | Whether to enable reminder for this task | |
| listId | Yes | ID of the task list | |
| reminderDateTime | No | Reminder date and time in ISO format | |
| startDateTime | No | Start date in ISO format (e.g., 2023-12-31T23:59:59Z) | |
| status | No | Status of the task | |
| title | Yes | Title of the task |