Skip to content

Latest commit

 

History

History
87 lines (73 loc) · 3.09 KB

File metadata and controls

87 lines (73 loc) · 3.09 KB
author daspek
title ItemActionSet resource type
description The itemActionSet object provides information about the actions that took place as part of an activity on an item.
ms.localizationpriority medium
ms.subservice sharepoint
doc_type resourcePageType
ms.date 03/12/2024

itemActionSet resource type

Namespace: microsoft.graph

The itemActionSet resource provides information about the actions that made up an activity on an item.

Note: Item activity records are currently only available on SharePoint and OneDrive for Business.

Properties

The following actions are currently available. Because new actions might be added in the future, make sure that your app can handle an itemActionSet that includes unknown actions.

Property name Type Description
access accessAction An item was accessed.
comment commentAction A comment was added to the item.
create createAction An item was created.
delete deleteAction An item was deleted.
edit editAction An item was edited.
mention mentionAction A user was mentioned in the item.
move moveAction An item was moved.
rename renameAction An item was renamed.
restore restoreAction An item was restored.
share shareAction An item was shared.
version versionAction An item was versioned.

JSON representation

{
  "access": {"@odata.type": "microsoft.graph.accessAction"},
  "comment": {"@odata.type": "microsoft.graph.commentAction"},
  "create": {"@odata.type": "microsoft.graph.createAction"},
  "delete": {"@odata.type": "microsoft.graph.deleteAction"},
  "edit": {"@odata.type": "microsoft.graph.editAction"},
  "mention": {"@odata.type": "microsoft.graph.mentionAction"},
  "move": {"@odata.type": "microsoft.graph.moveAction"},
  "rename": {"@odata.type": "microsoft.graph.renameAction"},
  "restore": {"@odata.type": "microsoft.graph.restoreAction"},
  "share": {"@odata.type": "microsoft.graph.shareAction"},
  "version": {"@odata.type": "microsoft.graph.versionAction"},
  
}