unifiedGroupSource resource type

Namespace: microsoft.graph.ediscovery

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

The container for a custodian's group.

Methods

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

Properties

Property Type Description
createdBy identitySet The user who created the unifiedGroupSource.
createdDateTime DateTimeOffset The date and time the unifiedGroupSource was created.
displayName String The display name of the unified group - This is the name of the group.
id String The ID of the unifiedGroupSource. This isn't the ID of the actual group.
includedSources microsoft.graph.ediscovery.sourceType Specifies which sources are included in this group. Possible values are: mailbox, site.

sourceType values

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

Member Description
mailbox Represents a mailbox.
site Represents a SharePoint site.

Relationships

Relationship Type Description
group group The group associated with the unifiedGroupSource.

JSON representation

The following JSON representation shows the resource type.

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#compliance/ediscovery/cases('4c8f8f70-7785-4bd4-b296-c98376a2c5e1')/custodians('2192ca408ea2410eba3bec8ae873be6b')/unifiedGroupSources",
    "value": [
        {
            "displayName": "Developers group",
            "createdDateTime": "2020-10-27T15:14:11.0048392Z",
            "id": "33434233-3030-3739-3043-393039324633",
            "includedSources": "mailbox,site",
            "createdBy": {
                "user": {
                    "id": "c1db6f13-332a-4d84-b111-914383ff9fc9",
                    "displayName": null
                }
            }
        }
    ]
}