Skip to content

Latest commit

 

History

History
79 lines (62 loc) · 2.79 KB

File metadata and controls

79 lines (62 loc) · 2.79 KB
title userSource resource type
description The container for a custodian's mailbox and OneDrive for Business site.
author mahage-msft
ms.localizationpriority medium
ms.subservice ediscovery
doc_type resourcePageType
ms.date 07/22/2024

userSource resource type

Namespace: microsoft.graph.ediscovery

[!INCLUDE beta-disclaimer]

[!INCLUDE ediscovery-deprecation]

The container for a custodian's mailbox and OneDrive for Business site.

Methods

Method Return type Description
List userSources microsoft.graph.ediscovery.userSource collection Get a list of the userSource objects and their properties.
Create userSource microsoft.graph.ediscovery.userSource Create a new userSource object.
Get userSource microsoft.graph.ediscovery.userSource Read the properties and relationships of a userSource object.
Delete userSource None Delete a userSource object.

Properties

Property Type Description
createdBy identitySet The user who created the userSource.
createdDateTime DateTimeOffset The date and time the userSource was created
displayName String The display name associated with the mailbox and site.
email String Email address of the user's mailbox.
id String The ID of the userSource. This is not the ID of the actual group
includedSources microsoft.graph.ediscovery.sourceType Specifies which sources are included in this group. The possible values are: mailbox, site.
siteWebUrl String The URL of the user's OneDrive for Business site. Read-only.

sourceType values

Types of source related to the user. Includes mailbox and site by default.

Member Description
mailbox Represents a mailbox.
site Represents a OneDrive for Business site.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.ediscovery.userSource",
  "displayName": "String",
  "createdDateTime": "String (timestamp)",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "id": "String (identifier)",
  "email": "String",
  "includedSources": "String"
}