Skip to main content

todo list get

Returns a specific Microsoft To Do task list

Usage

m365 todo list get [options]

Options

-i, --id [id]

The id of the list. Specify either id or name, but not both.

-n, --name [name]

The name of the list. Specify either id or name, but not both.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Examples

Get a specific Microsoft To Do task list based on id

m365 todo list get --id "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="

Get a specific Microsoft To Do task list based on name

m365 todo list get --name "Task list"

Response

{
"displayName": "Task list",
"isOwner": true,
"isShared": false,
"wellknownListName": "defaultList",
"id": "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="
}
CTRL + M