planner task list¶
Lists planner tasks in a bucket, plan, or tasks for the currently logged in user
Usage¶
m365 planner task list [options]
Options¶
--bucketId [bucketId]
- ID of the bucket to list the tasks of. To retrieve tasks from a bucket, specify
bucketId
orbucketName
, but not both. --bucketName [bucketName]
- Name of the bucket to list the tasks of. To retrieve tasks from a bucket, specify
bucketId
orbucketName
, but not both. --planId [planId]
- ID of a plan to list the tasks of. To retrieve all tasks from a plan, specify either
planId
orplanTitle
but not both. Use in combination withbucketName
to retrieve tasks from a specific bucket. --planTitle [planTitle]
- Title of a plan to list the tasks of. To retrieve all tasks from a plan, specify either
planId
orplanTitle
but not both. Always use in combination with eitherownerGroupId
orownerGroupName
. Use in combination withbucketName
to retrieve tasks from a specific bucket. --ownerGroupId [ownerGroupId]
- ID of the group to which the plan belongs. Specify
ownerGroupId
orownerGroupName
when usingplanTitle
. --ownerGroupName [ownerGroupName]
- Name of the group to which the plan belongs. Specify
ownerGroupId
orownerGroupName
when usingplanTitle
. -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 isfull
. --query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv,md
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Remarks¶
Attention
This command uses API that is currently in preview to enrich the results with the priority
field. Keep in mind that this preview API is subject to change once the API reached general availability.
Examples¶
List tasks for the currently logged in user
m365 planner task list
List the Microsoft Planner tasks in the plan iVPMIgdku0uFlou-KLNg6MkAE1O2
m365 planner task list --planId "iVPMIgdku0uFlou-KLNg6MkAE1O2"`
List the Microsoft Planner tasks in the plan My Plan in group My Group
m365 planner task list --planTitle "My Plan" --ownerGroupName "My Group"
List the Microsoft Planner tasks in the bucket FtzysDykv0-9s9toWiZhdskAD67z
m365 planner task list --bucketId "FtzysDykv0-9s9toWiZhdskAD67z"
List the Microsoft Planner tasks in the bucket My Bucket belonging to plan iVPMIgdku0uFlou-KLNg6MkAE1O2
m365 planner task list --bucketName "My Bucket" --planId "iVPMIgdku0uFlou-KLNg6MkAE1O2"
List the Microsoft Planner tasks in the bucket My Bucket belonging to plan My Plan in group My Group
m365 planner task list --bucketName "My Bucket" --planTitle "My Plan" --ownerGroupName "My Group"