Skip to content

Commit ff44058

Browse files
Merge pull request #230283 from kenwith/patch-43
Updates for acrolinx.
2 parents 5781ed8 + f69c2ac commit ff44058

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
88
ms.subservice: app-provisioning
99
ms.workload: identity
1010
ms.topic: tutorial
11-
ms.date: 03/09/2023
11+
ms.date: 03/10/2023
1212
ms.author: kenwith
1313
ms.reviewer: arvinh
1414
---
@@ -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
@@ -1195,7 +1195,7 @@ In the sample code, the request is translated into a call to the RetrieveAsync m
11951195
Task<Resource> RetrieveAsync(IRequest<IResourceRetrievalParameters> request);
11961196
```
11971197

1198-
In the example of a request to retrieve the current state of a user, the values of the properties of the object provided as the value of the parameters argument are as follows:
1198+
In the example of a request, to retrieve the current state of a user, the values of the properties of the object provided as the value of the parameters argument are as follows:
11991199

12001200
* Identifier: "54D382A4-2050-4C03-94D1-E769F1D15682"
12011201
* SchemaIdentifier: `urn:ietf:params:scim:schemas:extension:enterprise:2.0:User`
@@ -1254,7 +1254,7 @@ In the sample code, the request is translated into a call to the UpdateAsync met
12541254
Task UpdateAsync(IRequest<IPatch> request);
12551255
```
12561256

1257-
In the example of a request to update a user, the object provided as the value of the patch argument has these property values:
1257+
In the example of a request, to update a user, the object provided as the value of the patch argument has these property values:
12581258

12591259
|Argument|Value|
12601260
|-|-|
@@ -1398,7 +1398,7 @@ The provisioning service supports the [authorization code grant](https://tools.i
13981398
> [!NOTE]
13991399
> OAuth v1 is not supported due to exposure of the client secret. OAuth v2 is supported.
14001400

1401-
Supportting multiple secrets for easy renewal, without downtime is recommended, but not required.
1401+
It is recommended, but not required, that you support multiple secrets for easy renewal without downtime.
14021402

14031403
#### How to set up OAuth code grant flow
14041404

0 commit comments

Comments
 (0)