plannerUser resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Provides access to Planner resources for a user.

Methods

Method Return Type Description
List tasks plannerTask collection Get the plannerTasks assigned to the user.
List favoritePlans plannerPlan collection Get the plannerPlans marked as favorite by the user.
List recentPlans plannerPlan collection Get the plannerPlans recently viewed by the user.
List rosterPlans plannerPlan collection Get the plannerPlans contained by the plannerRosters that the user is a member.
Update plannerUser Update a plannerUser object.

Properties

Property Type Description
id String Read-only. Unique identifier for the plannerUser object.
favoritePlanReferences plannerFavoritePlanReferenceCollection A collection that contains the references to the plans that the user has marked as favorites.
recentPlanReferences plannerRecentPlanReferenceCollection A collection that contains references to the plans that were viewed recently by the user in apps that support recent plans.

Relationships

Relationship Type Description
favoritePlans plannerPlan collection Read-only. Nullable. Returns the plannerPlans that the user marked as favorites.
recentPlans plannerPlan collection Read-only. Nullable. Returns the plannerPlans that have been recently viewed by the user in apps that support recent plans.
rosterPlans plannerPlan collection Read-only. Nullable. Returns the plannerPlans contained by the plannerRosters the user is a member.
tasks plannerTask collection Read-only. Nullable. Returns the plannerTasks assigned to the user.

JSON representation

The following is a JSON representation of the resource.

{
  "id": "String (identifier)",
  "favoritePlanReferences": {"@odata.type": "microsoft.graph.plannerFavoritePlanReferenceCollection"},
  "recentPlanReferences": {"@odata.type": "microsoft.graph.plannerRecentPlanReferenceCollection"}
}