Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
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.
Represents an eDiscovery case member. In the context of eDiscovery, case members are granted access to an ediscoveryCase and its data. These cases are accessible to case members via the eDiscovery UX portal or through the eDiscovery case Microsoft Graph APIs. Case members can be one of two types: a user or a role group. For more information, see Add or remove members from an eDiscovery (premium) case.
Inherits from microsoft.graph.entity.
Methods
Method | Return type | Description |
---|---|---|
List | microsoft.graph.security.ediscoveryCaseMember collection | Get a list of the ediscoveryCaseMember objects and their properties. |
Add | microsoft.graph.security.ediscoveryCaseMember | Add a case member. |
Remove | None | Remove a case member. |
Properties
Property | Type | Description |
---|---|---|
recipientType | microsoft.graph.security.recipientType | Specifies the recipient type of the eDiscovery case member. The possible values are: user , roleGroup , unknownFutureValue . |
ID | String | The ID of the eDiscovery case member. |
displayName | String | The display name of the eDiscovery case member. Allowed only for case members of type roleGroup. |
smtpAddress | String | The smtp address of the eDiscovery case member. Allowed only for case members of type user. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.ediscoveryCaseMember",
"id": "String (identifier)",
"recipientType": "'@odata.type': 'microsoft.graph.security.recipientType'",
"displayName": "String",
"smtpAddress": "String"
}