create-task-list
Organize tasks efficiently by creating new task lists in Microsoft Todo. Define clear categories or projects to streamline task management and improve productivity.
Instructions
Create a new task list (top-level container) in Microsoft Todo to help organize your tasks into categories or projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displayName | Yes | Name of the new task list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"displayName": {
"description": "Name of the new task list",
"type": "string"
}
},
"required": [
"displayName"
],
"type": "object"
}