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
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 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Description or body content of the task",
"type": "string"
},
"categories": {
"description": "Categories associated with the task",
"items": {
"type": "string"
},
"type": "array"
},
"dueDateTime": {
"description": "Due date in ISO format (e.g., 2023-12-31T23:59:59Z)",
"type": "string"
},
"importance": {
"description": "Task importance",
"enum": [
"low",
"normal",
"high"
],
"type": "string"
},
"isReminderOn": {
"description": "Whether to enable reminder for this task",
"type": "boolean"
},
"listId": {
"description": "ID of the task list",
"type": "string"
},
"reminderDateTime": {
"description": "Reminder date and time in ISO format",
"type": "string"
},
"startDateTime": {
"description": "Start date in ISO format (e.g., 2023-12-31T23:59:59Z)",
"type": "string"
},
"status": {
"description": "Status of the task",
"enum": [
"notStarted",
"inProgress",
"completed",
"waitingOnOthers",
"deferred"
],
"type": "string"
},
"title": {
"description": "Title of the task",
"type": "string"
}
},
"required": [
"listId",
"title"
],
"type": "object"
}