Skip to content

Commit 948279c

Browse files
authored
Rewords for clarity.
1 parent 0fd1e61 commit 948279c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/active-directory/app-provisioning/use-scim-to-provision-users-and-groups.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,11 +1171,11 @@ In the sample code, the request is translated into a call to the CreateAsync met
11711171
Task<Resource> CreateAsync(IRequest<Resource> request);
11721172
```
11731173

1174-
In a request to a user provisioning, the value of the resource argument is an instance of the Microsoft.SCIM.Core2EnterpriseUser class, defined in the Microsoft.SCIM.Schemas library. If the request to provision the user succeeds, then the implementation of the method is expected to return an instance of the Microsoft.SCIM.Core2EnterpriseUser class, with the value of the Identifier property set to the unique identifier of the newly provisioned user.
1174+
In a request for user provisioning, the value of the resource argument is an instance of the Microsoft.SCIM.Core2EnterpriseUser class. This class is defined in the Microsoft.SCIM.Schemas library. If the request to provision the user succeeds, then the implementation of the method is expected to return an instance of the Microsoft.SCIM.Core2EnterpriseUser class. The value of the `Identifier` property is set to the unique identifier of the newly provisioned user.
11751175

11761176
***Example 3. Query the current state of a user***
11771177

1178-
To update a user known to exist in an identity store fronted by an SCIM, Azure AD proceeds by requesting the current state of that user from the service with a request such as:
1178+
Azure AD requests the current state of the specified user from the service with a request such as:
11791179

11801180
```
11811181
GET ~/scim/Users/54D382A4-2050-4C03-94D1-E769F1D15682 HTTP/1.1

0 commit comments

Comments
 (0)