Skip to content

Commit 0cd9a40

Browse files
committed
Fixed blocking issues and updated one image.
1 parent 6a9df38 commit 0cd9a40

File tree

5 files changed

+8
-25
lines changed

5 files changed

+8
-25
lines changed

articles/active-directory/app-provisioning/inbound-provisioning-api-curl-tutorial.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,7 @@ ms.reviewer: cmmdesai
6363
The bulk request shown below uses the SCIM standard Core User and Enterprise User schema.
6464
6565
**Request body**
66-
# [HTTP](#tab/http)
67-
<!-- {
68-
"blockType": "request",
69-
"name": "Quick_start_with_curl"
70-
}-->
66+
7167
```http
7268
{
7369
"schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkRequest"],

articles/active-directory/app-provisioning/inbound-provisioning-api-custom-attributes.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this step, we'll add the two attributes "HireDate" and "JobCode" that are not
3232
1. Go to **Enterprise applications** and open your API-driven provisioning app.
3333
1. Open the **Provisioning** blade.
3434
1. Click on the **Edit Provisioning** button.
35-
1. Expand the **Mappings** section and click on the attribute mapping link.
35+
1. Expand the **Mappings** section and click on the attribute mapping link. <br>
3636
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/edit-attribute-mapping.png" alt-text="Screenshot of edit attribute mapping." lightbox="./media/inbound-provisioning-api-custom-attributes/edit-attribute-mapping.png":::
3737
1. Scroll down the **Attribute Mappings** page. Select **Show advanced options** and click on the **Edit attribute list for API** link.
3838
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/edit-api-attribute-list.png" alt-text="Screenshot of edit API attribute list." lightbox="./media/inbound-provisioning-api-custom-attributes/edit-api-attribute-list.png":::
@@ -52,7 +52,7 @@ Let's now add these extensions to the provisioning app attribute mapping.
5252

5353
1. Click on the **Add New Mapping** link on the **Attribute mapping** page.
5454
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/add-new-mapping.png" alt-text="Screenshot of add new mapping." lightbox="./media/inbound-provisioning-api-custom-attributes/add-new-mapping.png":::
55-
1. Map the `urn:ietf:params:scim:schemas:extension:contoso:1.0:User:HireDate` attribute to `employeeHireDate`. Click **OK**.
55+
1. Map the `urn:ietf:params:scim:schemas:extension:contoso:1.0:User:HireDate` attribute to `employeeHireDate`. Click **OK**. <br>
5656
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/hire-date-mapping.png" alt-text="Screenshot of hire date mapping." lightbox="./media/inbound-provisioning-api-custom-attributes/hire-date-mapping.png":::
5757
1. Next, select the existing mapping for `title` and click on it to edit the mapping.
5858
1. Edit the attribute mapping to an expression that will include the `urn:ietf:params:scim:schemas:extension:contoso:1.0:User:JobCode` as part of the `jobTitle` Azure AD attribute.
@@ -68,11 +68,11 @@ Let's now add these extensions to the provisioning app attribute mapping.
6868

6969
1. Open your API client (Graph Explorer / Postman / cURL).
7070
1. Copy-paste the [bulk request with custom attributes](#bulk-request-with-custom-attributes).
71-
1. Send the bulk request to your provisioning API endpoint URL.
71+
1. Send the bulk request to your provisioning API endpoint URL. <br>
7272
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/upload-bulk-request.png" alt-text="Screenshot of bulk upload request." lightbox="./media/inbound-provisioning-api-custom-attributes/upload-bulk-request.png":::
73-
1. After some time, you can check the provisioning logs to verify the attribute change.
73+
1. After some time, you can check the provisioning logs to verify the attribute change. <br>
7474
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/verify-provisioning-logs.png" alt-text="Screenshot of provisioning logs." lightbox="./media/inbound-provisioning-api-custom-attributes/verify-provisioning-logs.png":::
75-
1. You can also verify the change in the Azure AD user profile. The value for `Employee hire date` reflects your tenant time zone.
75+
1. You can also verify the change in the Azure AD user profile. The value for `Employee hire date` reflects your tenant time zone. <br>
7676
:::image type="content" border="true" source="./media/inbound-provisioning-api-custom-attributes/verify-user-profile.png" alt-text="Screenshot of user profile." lightbox="./media/inbound-provisioning-api-custom-attributes/verify-user-profile.png":::
7777

7878
## Appendix
@@ -82,11 +82,6 @@ Let's now add these extensions to the provisioning app attribute mapping.
8282
The bulk request includes the custom attributes configured in the steps above.
8383

8484
**Request body**
85-
# [HTTP](#tab/http)
86-
<!-- {
87-
"blockType": "request",
88-
"name": "how_to_use_custom_attributes"
89-
}-->
9085
```http
9186
{
9287
"schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkRequest"],

articles/active-directory/app-provisioning/inbound-provisioning-api-graph-explorer.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,7 @@ You can inspect the processing using the provisioning logs API URL returned as p
8484
The bulk request shown below uses the SCIM standard Core User and Enterprise User schema.
8585

8686
**Request body**
87-
# [HTTP](#tab/http)
88-
<!-- {
89-
"blockType": "request",
90-
"name": "Quick_start_with_Graph_Explorer"
91-
}-->
87+
9288
```http
9389
{
9490
"schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkRequest"],

articles/active-directory/app-provisioning/inbound-provisioning-api-postman.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,7 @@ Upon successful execution, you'll get a `200 HTTP` response from the server alon
9898
The bulk request shown below uses the SCIM standard Core User and Enterprise User schema.
9999

100100
**Request body**
101-
# [HTTP](#tab/http)
102-
<!-- {
103-
"blockType": "request",
104-
"name": "Quick_start_with_Postman"
105-
}-->
101+
106102
```http
107103
{
108104
"schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkRequest"],
Loading

0 commit comments

Comments
 (0)