plannerBucket resource type

Namespace: microsoft.graph

Represents a bucket (or "custom column") for tasks in a plan in Microsoft 365. It is contained in a plannerPlan and can have a collection of plannerTasks.

Methods

Method Return Type Description
Get plannerBucket plannerBucket Read properties and relationships of plannerBucket object.
List plannerTasks plannerTask collection Get a plannerTask object collection.
Create plannerBucket Create a new plannerBucket object.
Update plannerBucket Update plannerBucket object.
Delete None Delete plannerBucket object.

Properties

Property Type Description
id String Read-only. ID of the bucket. It is 28 characters long and case-sensitive. Format validation is done on the service.
name String Name of the bucket.
orderHint String Hint used to order items of this type in a list view. For details about the supported format, see Using order hints in Planner.
planId String Plan ID to which the bucket belongs.

Relationships

Relationship Type Description
tasks plannerTask collection Read-only. Nullable. The collection of tasks in the bucket.

JSON representation

Here's a JSON representation of the resource.

{
  "id": "String (identifier)",
  "name": "String",
  "orderHint": "String",
  "planId": "String"
}