Skip to content

Commit b005a07

Browse files
Update use-scim-to-provision-users-and-groups.md
1 parent aa00e3d commit b005a07

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

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

Lines changed: 16 additions & 16 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
@@ -452,21 +467,6 @@ This section provides example SCIM requests emitted by the Azure AD SCIM client
452467

453468
*HTTP/1.1 204 No Content*
454469

455-
###### Request
456-
*GET /Users/5171a35d82074e068ce2*
457-
458-
###### Response
459-
460-
```json
461-
{
462-
"schemas": [
463-
"urn:ietf:params:scim:api:messages:2.0:Error"
464-
],
465-
"status": "404",
466-
"detail": "Resource 23B51B0E5D7AE9110A49411D@7cca31655d49f3640a494224 not found"
467-
}
468-
```
469-
470470
### Group Operations
471471

472472
* Groups shall always be created with an empty members list.

0 commit comments

Comments
 (0)