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 myDayTasks plannerTask collection Get the plannerTasks to be shown in the user's MyDay view.
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 marked as favorites.
recentPlanReferences plannerRecentPlanReferenceCollection A collection that contains references to the plans that the user recently viewed 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 the user recently viewed 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.
myDayTasks plannerTask collection Read-only. Nullable. Returns the plannerTasks to be shown in the My Day view of the user.

JSON representation

The following JSON representation shows the resource type.

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