Edit

sharePointIdentitySet resource type

Namespace: microsoft.graph

Represents a keyed collection of sharePointIdentity and identity resources. This resource extends from the identitySet resource to provide the ability to expose SharePoint-specific information to the user.

This resource is used to represent a set of identities associated with various events for an item, such as created by or last modified by.

For usage information, see driveItem.

Properties

Property Type Description
application identity The application associated with this action. Optional.
device identity The device associated with this action. Optional.
group identity The group associated with this action. Optional.
sharePointGroup sharePointGroupIdentity The SharePoint group associated with this action, identified by a globally unique ID. Use this property instead of siteGroup when available. Optional.
siteGroup sharePointIdentity The SharePoint group associated with this action, identified by a principal ID that is unique only within the site. Optional.
siteUser sharePointIdentity The SharePoint user associated with this action. Optional.
user identity The user associated with this action. Optional.

JSON representation

The following JSON representation shows the resource type.

{
  /** inherited from IdentitySet **/
  "application": {"@odata.type": "microsoft.graph.identity"},
  "device": {"@odata.type": "microsoft.graph.identity"},
  "user": {"@odata.type": "microsoft.graph.identity"},
  
  "group": {"@odata.type": "microsoft.graph.identity"},
  "siteUser": {"@odata.type": "microsoft.graph.sharePointIdentity"},
  "siteGroup":{"@odata.type": "microsoft.graph.sharePointIdentity"},
  "sharePointGroup": {"@odata.type": "microsoft.graph.sharePointGroupIdentity"}
}