@@ -8,7 +8,7 @@ ms.service: active-directory
8
8
ms.subservice : app-provisioning
9
9
ms.workload : identity
10
10
ms.topic : tutorial
11
- ms.date : 03/09 /2023
11
+ ms.date : 03/10 /2023
12
12
ms.author : kenwith
13
13
ms.reviewer : arvinh
14
14
---
@@ -1171,11 +1171,11 @@ In the sample code, the request is translated into a call to the CreateAsync met
1171
1171
Task < Resource > CreateAsync (IRequest < Resource > request );
1172
1172
```
1173
1173
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 .
1175
1175
1176
1176
***Example 3. Query the current state of a user ***
1177
1177
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 :
1179
1179
1180
1180
```
1181
1181
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
1195
1195
Task < Resource > RetrieveAsync (IRequest < IResourceRetrievalParameters > request );
1196
1196
```
1197
1197
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 :
1199
1199
1200
1200
* Identifier : " 54D382A4-2050-4C03-94D1-E769F1D15682"
1201
1201
* 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
1254
1254
Task UpdateAsync (IRequest < IPatch > request );
1255
1255
```
1256
1256
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 :
1258
1258
1259
1259
| Argument | Value |
1260
1260
| - | - |
@@ -1398,7 +1398,7 @@ The provisioning service supports the [authorization code grant](https://tools.i
1398
1398
> [! NOTE ]
1399
1399
> OAuth v1 is not supported due to exposure of the client secret . OAuth v2 is supported .
1400
1400
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 .
1402
1402
1403
1403
#### How to set up OAuth code grant flow
1404
1404
0 commit comments