Skip to content

Commit 7d73dae

Browse files
committed
updates
1 parent 786f302 commit 7d73dae

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

api-reference/beta/api/security-ediscoverycasemember-add.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Namespace: microsoft.graph.security
1414

1515
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1616

17-
Add an [ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) to an [ediscoveryCase](../resources/security-ediscoverycase.md). The [ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) can be can be one of two types: a user or a role group.
17+
Add an [ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) to an [ediscoveryCase](../resources/security-ediscoverycase.md). The [ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) can be one of two types: a user or a role group.
1818

1919
## Permissions
2020

@@ -51,23 +51,23 @@ POST security/cases/ediscoveryCases/{ediscoveryCaseId}/caseMembers
5151
|Property|Type|Description|
5252
|:---|:---|:---|
5353
|recipientType|microsoft.graph.security.recipientType|Specifies the recipient type of the eDiscovery case member. The possible values are: `user`, `roleGroup`, `unknownFutureValue`. Required.|
54-
|id|String|The id of the eDiscovery case member. If not specified, then either **displayName** (for role group) or **smtpAddress** (for user) must be provided.|
55-
|displayName|String|The display name of the eDiscovery case member. Allowed only for case members of type **roleGroup**. If not specified, then **id** must be provided. |
56-
|smtpAddress|String|The smtp address of the eDiscovery case member. Allowed only for case members of type **user**. If not specified, then **id** must be provided. |
54+
|ID|String|The ID of the eDiscovery case member. If not specified, then either **displayName** (for role group) or **smtpAddress** (for user) must be provided.|
55+
|displayName|String|The display name of the eDiscovery case member. Allowed only for case members of type **roleGroup**. If not specified, then **ID** must be provided. |
56+
|smtpAddress|String|The smtp address of the eDiscovery case member. Allowed only for case members of type **user**. If not specified, then **ID** must be provided. |
5757

5858
## Response
5959

6060
If successful, this method returns a `200 OK` response code and the added [microsoft.graph.security.ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) object in the response body.
6161

6262
## Examples
6363

64-
### Example 1: Add a case member of type **user** using **smtAddress**
64+
### Example 1: Add a case member of type **user** using **smtpAddress**
6565
#### Request
6666

6767
The following example shows a request.
6868
<!-- {
6969
"blockType": "request",
70-
"name": "update_ediscoverycasemember"
70+
"name": "user/smtp request"
7171
}
7272
-->
7373
``` http
@@ -86,7 +86,8 @@ Content-Type: application/json
8686
The following example shows the response.
8787
<!-- {
8888
"blockType": "response",
89-
"truncated": true
89+
"name": "user/smtp response"
90+
"@odata.type": "microsoft.graph.security.ediscoveryCaseMember"
9091
}
9192
-->
9293
``` http
@@ -107,7 +108,7 @@ Content-Type: application/json
107108
The following example shows a request.
108109
<!-- {
109110
"blockType": "request",
110-
"name": "update_ediscoverycasemember"
111+
"name": "roleGroup/displayName request"
111112
}
112113
-->
113114
``` http
@@ -125,7 +126,8 @@ Content-Type: application/json
125126
The following example shows the response.
126127
<!-- {
127128
"blockType": "response",
128-
"truncated": true
129+
"name": "roleGroup/displayName response",
130+
"@odata.type": "microsoft.graph.security.ediscoveryCaseMember"
129131
}
130132
-->
131133
``` http
@@ -146,7 +148,7 @@ Content-Type: application/json
146148
The following example shows a request.
147149
<!-- {
148150
"blockType": "request",
149-
"name": "update_ediscoverycasemember"
151+
"name": "user/id request"
150152
}
151153
-->
152154
``` http
@@ -165,7 +167,8 @@ Content-Type: application/json
165167
The following example shows the response.
166168
<!-- {
167169
"blockType": "response",
168-
"truncated": true
170+
"name": "user/id response",
171+
"@odata.type": "microsoft.graph.security.ediscoveryCaseMember"
169172
}
170173
-->
171174
``` http
@@ -186,7 +189,7 @@ Content-Type: application/json
186189
The following example shows a request.
187190
<!-- {
188191
"blockType": "request",
189-
"name": "update_ediscoverycasemember"
192+
"name": "roleGroup/id request"
190193
}
191194
-->
192195
``` http
@@ -204,7 +207,8 @@ Content-Type: application/json
204207
The following example shows the response.
205208
<!-- {
206209
"blockType": "response",
207-
"truncated": true
210+
"name": "roleGroup/id response",
211+
"@odata.type": "microsoft.graph.security.ediscoveryCaseMember"
208212
}
209213
-->
210214
``` http

api-reference/beta/api/security-ediscoverycasemember-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Don't supply a request body for this method.
5353

5454
## Response
5555

56-
If successful, this method returns a `200 OK` response code and a collection of [ediscoveryCaseMember](../resources/ediscoverycasemember.md) objects in the response body.
56+
If successful, this method returns a `200 OK` response code and a collection of [ediscoveryCaseMember](../resources/security-ediscoverycasemember.md) objects in the response body.
5757

5858
## Examples
5959

api-reference/beta/api/security-ediscoverycasemember-remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ DELETE security/cases/ediscoveryCases/{ediscoveryCaseId}/caseMembers
5050

5151
|Property|Type|Description|
5252
|:---|:---|:---|
53-
|id|String|The id of the eDiscovery case member. Can be obtained by calling **GET /caseMembers**. Required.|
53+
|ID|String|The ID of the eDiscovery case member. Can be obtained by calling **GET /caseMembers**. Required.|
5454

5555
## Response
5656

0 commit comments

Comments
 (0)