Skip to content

Commit a7e30cf

Browse files
authored
Merge pull request #91768 from ArvindHarinder1/patch-20
Remove members from group create and add delete get call
2 parents 631978a + b005a07 commit a7e30cf

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

articles/active-directory/manage-apps/use-scim-to-provision-users-and-groups.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ This section provides example SCIM requests emitted by the Azure AD SCIM client
258258
###### <a name="request-1"></a>Request
259259
*GET /Users/5d48a0a8e9f04aa38008*
260260

261-
###### <a name="response-1"></a>Response
261+
###### <a name="response-1"></a>Response (User found)
262262
*HTTP/1.1 200 OK*
263263
```json
264264
{
@@ -285,6 +285,21 @@ This section provides example SCIM requests emitted by the Azure AD SCIM client
285285
}
286286
```
287287

288+
###### Request
289+
*GET /Users/5171a35d82074e068ce2*
290+
291+
###### Response (User not found. Note that the detail is not required, only status.)
292+
293+
```json
294+
{
295+
"schemas": [
296+
"urn:ietf:params:scim:api:messages:2.0:Error"
297+
],
298+
"status": "404",
299+
"detail": "Resource 23B51B0E5D7AE9110A49411D@7cca31655d49f3640a494224 not found"
300+
}
301+
```
302+
288303
#### Get User by query
289304

290305
##### <a name="request-2"></a>Request
@@ -469,7 +484,6 @@ This section provides example SCIM requests emitted by the Azure AD SCIM client
469484
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:Group", "http://schemas.microsoft.com/2006/11/ResourceManagement/ADSCIM/2.0/Group"],
470485
"externalId": "8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159",
471486
"displayName": "displayName",
472-
"members": [],
473487
"meta": {
474488
"resourceType": "Group"
475489
}

0 commit comments

Comments
 (0)