Skip to main content

planner bucket add

Adds a new Microsoft Planner bucket

Usage

m365 planner bucket add [options]

Options

-n, --name <name>

Name of the bucket to add.

--planId [planId]

ID of the plan to which the bucket belongs. Specify either planId or planTitle but not both.

--planTitle [planTitle]

Title of the plan to which the bucket belongs. Specify either planId or planTitle but not both.

--ownerGroupId [ownerGroupId]

ID of the group to which the plan belongs. Specify ownerGroupId or ownerGroupName when using planTitle.

--ownerGroupName [ownerGroupName]

Name of the group to which the plan belongs. Specify ownerGroupId or ownerGroupName when using planTitle.

--orderHint [orderHint]

Hint used to order items of this type in a list view. The format is defined as outlined here.

-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 full.

--query [query]

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

-o, --output [output]

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

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Examples

Adds a Microsoft Planner bucket with the name My Planner Bucket for plan with the ID xqQg5FS2LkCp935s-FIFm2QAFkHM with order hint

m365 planner bucket add --name "My Planner Bucket" --planId "xqQg5FS2LkCp935s-FIFm2QAFkHM" --orderHint " !"

Adds a Microsoft Planner bucket with the name My Planner Bucket for plan with the title My Planner Plan owned by group My Planner Group

m365 planner bucket add --name "My Planner Bucket" --planTitle "My Planner Plan" --ownerGroupName "My Planner Group"

Response

{
"name": "My Planner Bucket",
"planId": "xqQg5FS2LkCp935s-FIFm2QAFkHM",
"orderHint": "8585363889524958496",
"id": "ttEB_Uj690STdR3GC1MIDZgANq1U"
}
CTRL + M