Skip to content

Commit 84cf2e5

Browse files
authored
Merge pull request #25093 from microsoftgraph/add-modified-by-field-to-plannerTask
add modified by field to planner task
2 parents 5853cf1 + 4b2e9a9 commit 84cf2e5

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

api-reference/beta/resources/plannertask.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Represents a planner task in Microsoft 365. A planner task is contained in a [pl
5252
|isArchived|Boolean|Read-only. If set to `true`, the task is archived. An archived task is read-only.|
5353
|isOnMyDay|Boolean|Indicates whether to show this task in the MyDay view. If `true`, it shows the task.|
5454
|isOnMyDayLastModifiedDate|Date|Read-only. The date on which task is added to or removed from MyDay.|
55+
|lastModifiedBy|[identitySet](identityset.md)|Read-only. User ID by which this is last modified.|
56+
|lastModifiedDateTime|DateTimeOffset|Read-only. Date and time at which this is last modified. 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`|
5557
|orderHint|String|The hint used to order items of this type in a list view. For more information, see [Using order hints in planner](planner-order-hint-format.md).|
5658
|percentComplete|Int32|The percentage of task completion. When set to `100`, the task is completed. |
5759
|priority|Int32|The priority of the task. Valid values are between `0` and `10`, inclusive. Larger values indicate lower priority. For example, `0` has the highest priority and `10` has the lowest priority. Currently, planner interprets values `0` and `1` as "urgent", `2` and `3` and `4` as "important", `5`, `6`, and `7` as "medium", and `8`, `9`, and `10` as "low". Currently, planner sets the value `1` for "urgent", `3` for "important", `5` for "medium", and `9` for "low".|
@@ -116,6 +118,8 @@ The following JSON representation shows the resource type.
116118
"id": "String (identifier)",
117119
"isOnMyDay": "Boolean",
118120
"isOnMyDayLastModifiedDate": "Date",
121+
"lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
122+
"lastModifiedDateTime": "String (timestamp)",
119123
"orderHint": "String",
120124
"percentComplete": "Int32",
121125
"planId": "String",

changelog/Microsoft.Office.Tasks.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2029,6 +2029,32 @@
20292029
"CreatedDateTime": "2023-11-29T17:13:44.4758634Z",
20302030
"WorkloadArea": "Tasks and plans",
20312031
"SubArea": ""
2032+
},
2033+
{
2034+
"ChangeList": [
2035+
{
2036+
"Id": "e2fbee02-7ae2-4152-8728-bcffcf6a5e28",
2037+
"ApiChange": "Property",
2038+
"ChangedApiName": "lastModifiedBy",
2039+
"ChangeType": "Addition",
2040+
"Description": "Added the **lastModifiedBy** property to the [plannerTask](https://learn.microsoft.com/en-us/graph/api/resources/plannerTask?view=graph-rest-beta) resource.",
2041+
"Target": "plannerTask"
2042+
},
2043+
{
2044+
"Id": "e2fbee02-7ae2-4152-8728-bcffcf6a5e28",
2045+
"ApiChange": "Property",
2046+
"ChangedApiName": "lastModifiedDateTime",
2047+
"ChangeType": "Addition",
2048+
"Description": "Added the **lastModifiedDateTime** property to the [plannerTask](https://learn.microsoft.com/en-us/graph/api/resources/plannerTask?view=graph-rest-beta) resource.",
2049+
"Target": "plannerTask"
2050+
}
2051+
],
2052+
"Id": "e2fbee02-7ae2-4152-8728-bcffcf6a5e28",
2053+
"Cloud": "Prod",
2054+
"Version": "beta",
2055+
"CreatedDateTime": "2025-05-08T21:36:09.3765749Z",
2056+
"WorkloadArea": "Tasks and plans",
2057+
"SubArea": ""
20322058
}
20332059
]
20342060
}

0 commit comments

Comments
 (0)