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

The plannerAssignment resource represents the assignment of a task to a user. This type is used in the open type plannerAssignments.

Properties

Property Type Description
assignedBy identitySet The identity of the user that performed the assignment of the task, that is, the assignor.
assignedDateTime DateTimeOffset The time at which the task was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
orderHint String Hint used to order assignees in a task. The format is defined as outlined here.

JSON representation

The following JSON representation shows the resource type.

{
  "assignedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "assignedDateTime": "String (timestamp)",
  "orderHint": "String"
}