Microsoft Planner activity

OperationDescriptionSampleRule
anyCatch-all for M365-PlannerTask rules matching the RecordType but no specific Operation.NN
TaskAssignedTask Assigned activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).YN
TaskCreatedTask Created activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).YN
TaskModifiedTask Modified activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).YN

any: Microsoft Planner activity (catch-all)

#
RecordType
PlannerTask

Description

Catch-all for M365-PlannerTask rules matching the RecordType but no specific Operation.

TaskAssigned

#
RecordType
PlannerTask

Description

Task Assigned activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).

Example Audit Record #

{
  "AppAccessContext": {
    "ClientAppId": "22222222-2222-2222-2222-222222222222",
    "CorrelationId": "4ccaaea8-f00b-4900-b066-6d98f23c5a5a"
  },
  "ClientIP": "203.0.113.10",
  "CreationTime": "2026-07-02T02:10:44Z",
  "Id": "62a29bc2-1321-4c63-b4b0-712e1e0fcf66",
  "ObjectId": "m6PSKawQ30e4eqgQiOSivmUACu3C",
  "Operation": "TaskAssigned",
  "OrganizationId": "00000000-0000-0000-0000-000000000001",
  "PlanId": "vS4pRN0kgU-rJ96he6uvYmUACinM",
  "RecordType": 190,
  "ResultStatus": "Success",
  "UserId": "adminuser@example.onmicrosoft.com",
  "UserKey": "11111111-1111-1111-1111-111111111111",
  "UserType": 2,
  "Workload": "Planner"
}

TaskCreated

#
RecordType
PlannerTask

Description

Task Created activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).

Example Audit Record #

{
  "AppAccessContext": {
    "ClientAppId": "22222222-2222-2222-2222-222222222222",
    "CorrelationId": "4ccaaea8-f00b-4900-b066-6d98f23c5a5a"
  },
  "ClientIP": "203.0.113.10",
  "CreationTime": "2026-07-02T02:10:44Z",
  "Id": "ca94dc23-71a4-4753-88d6-383284139cd4",
  "ObjectId": "m6PSKawQ30e4eqgQiOSivmUACu3C",
  "Operation": "TaskCreated",
  "OrganizationId": "00000000-0000-0000-0000-000000000001",
  "PlanId": "vS4pRN0kgU-rJ96he6uvYmUACinM",
  "RecordType": 190,
  "ResultStatus": "Success",
  "UserId": "adminuser@example.onmicrosoft.com",
  "UserKey": "11111111-1111-1111-1111-111111111111",
  "UserType": 2,
  "Workload": "Planner"
}

TaskModified

#
RecordType
PlannerTask

Description

Task Modified activity in Microsoft Planner, recorded in the Unified Audit Log (observed in first-party capture).

Example Audit Record #

{
  "AppAccessContext": {
    "ClientAppId": "22222222-2222-2222-2222-222222222222",
    "CorrelationId": "615bb344-a869-4beb-93a6-435e57dcd600"
  },
  "ClientIP": "203.0.113.10",
  "CreationTime": "2026-07-02T02:10:44Z",
  "Id": "2ad39c1a-3cff-42e3-ac2d-931b3d64fb5d",
  "ObjectId": "m6PSKawQ30e4eqgQiOSivmUACu3C",
  "Operation": "TaskModified",
  "OrganizationId": "00000000-0000-0000-0000-000000000001",
  "PlanId": "vS4pRN0kgU-rJ96he6uvYmUACinM",
  "RecordType": 190,
  "ResultStatus": "Success",
  "UserId": "adminuser@example.onmicrosoft.com",
  "UserKey": "11111111-1111-1111-1111-111111111111",
  "UserType": 2,
  "Workload": "Planner"
}

References #

M365 audit records use different field names on each surface #

The same Unified Audit Log record uses different field names on each surface. A query built for one surface can silently miss on another. These pages document the Management Activity API JSON names, the same names Search-UnifiedAuditLog and the Office 365 Management Activity API return.

  • Purview CSV export flattens each record to four columns (CreationDate, UserIds, Operations, AuditData). The API field names live only inside the AuditData JSON blob. Expand it with ConvertFrom-Json. The wrapper columns are renamed too: CreationDate not CreationTime, UserIds not UserId, Operations not Operation.
  • Sentinel's OfficeActivity table renames several fields and turns two integer enum columns into strings. The table below maps them.
API JSON (event pages)OfficeActivity columnNote
IdOfficeIdRenamed.
WorkloadOfficeWorkloadRenamed.
ObjectIdOfficeObjectIdRenamed.
CreationTimeTimeGeneratedRenamed. OfficeActivity has no CreationTime column.
SiteUrlSite_UrlRenamed (SharePoint family).
RecordTypeRecordTypeSame name; the Int32 enum becomes its string enum name.
UserTypeUserTypeSame name; the Int32 enum becomes a string.
ClientIPClientIP, Client_IPAddressBoth columns present on OfficeActivity.
Scope(none)No OfficeActivity equivalent under any name. Recover it from the API JSON or the Purview AuditData blob.
Operation, UserId, ResultStatus, UserKey, AppAccessContext, OrganizationIdsame namesUnchanged. No _s / _d suffixes (a native table, not a custom log).

Mapping verified against the OfficeActivity table reference, the Management Activity API schema, and the Purview audit-record export format.