planner resource type
Namespace: microsoft.graph
The planner resource is the entry point for the Planner object model. It returns a singleton planner resource. It doesn't contain any usable properties.
Methods
Method | Return Type | Description |
---|---|---|
Create bucket | plannerBucket | Create a new plannerBucket by posting to the buckets collection. |
Create plan | plannerPlan | Create a new plannerPlan by posting to the plans collection. |
Create task | plannerTask | Create a new plannerTask by posting to the tasks collection. |
Relationships
Relationship | Type | Description |
---|---|---|
buckets | plannerBucket collection | Read-only. Nullable. Returns a collection of the specified buckets |
plans | plannerPlan collection | Read-only. Nullable. Returns a collection of the specified plans |
tasks | plannerTask collection | Read-only. Nullable. Returns a collection of the specified tasks |
JSON representation
The following JSON representation shows the resource type.
{
}
Example
The planner resource is available at the root of the graph.
GET https://graph.microsoft.com/v1.0/planner
HTTP/1.1 200 OK
Content-type: application/json
{
}