Skip to content

Latest commit

 

History

History
67 lines (53 loc) · 2.46 KB

File metadata and controls

67 lines (53 loc) · 2.46 KB
title siteSource resource type
description The container for a site associated with a custodian.
author mahage-msft
ms.localizationpriority medium
ms.subservice ediscovery
doc_type resourcePageType
ms.date 07/22/2024

siteSource resource type

Namespace: microsoft.graph.ediscovery

[!INCLUDE beta-disclaimer]

[!INCLUDE ediscovery-deprecation]

The container for a site associated with a custodian.

Methods

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

Properties

Property Type Description
createdBy identitySet The user who created the siteSource.
createdDateTime DateTimeOffset The date and time the siteSource was created.
displayName String The display name of the siteSource. This will be the name of the SharePoint site.
id String The ID of the siteSource. The site source can be retrieved at any time with Get site - https://graph.microsoft.com/v1.0/sites/{siteId}

Relationships

Relationship Type Description
site site The SharePoint site associated with the siteSource.

JSON representation

The following JSON representation shows the resource type.

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