update-task-list
Modify the name of an existing task list in Microsoft Todo by specifying the list ID and providing a new display name for accurate organization and management.
Instructions
Update the name of an existing task list (top-level container) in Microsoft Todo.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displayName | Yes | New name for the task list | |
listId | Yes | ID of the task list to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"displayName": {
"description": "New name for the task list",
"type": "string"
},
"listId": {
"description": "ID of the task list to update",
"type": "string"
}
},
"required": [
"listId",
"displayName"
],
"type": "object"
}