Skip to content

Commit 76f9715

Browse files
committed
made freshness updates
1 parent 45ebfd0 commit 76f9715

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory/develop/howto-add-terms-of-service-privacy-statement.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: develop
1010
ms.topic: how-to
1111
ms.workload: identity
12-
ms.date: 09/27/2021
12+
ms.date: 03/07/2023
1313
ms.author: ryanwi
1414
ms.reviewer: sureshja
1515
ms.custom: aaddev
@@ -56,7 +56,7 @@ Follow these steps in the Azure portal.
5656

5757
1. Sign in to the <a href="https://portal.azure.com/" target="_blank">Azure portal</a> and select the correct Azure AD tenant(not B2C).
5858
2. Navigate to the **App registrations** section and select your app.
59-
3. Under **Manage**, select **Branding**.
59+
3. Under **Manage**, select **Branding & properties**.
6060
4. Fill out the **Terms of service URL** and **Privacy statement URL** fields.
6161
5. Select **Save**.
6262

@@ -66,10 +66,10 @@ Follow these steps in the Azure portal.
6666

6767
If you prefer to modify the app object JSON directly, you can use the manifest editor in the Azure portal or Application Registration Portal to include links to your app's terms of service and privacy statement.
6868

69-
1. Navigating to the **App Registrations** section and select your app.
69+
1. Navigate to the **App Registrations** section and select your app.
7070
2. Open the **Manifest** pane.
7171
3. Ctrl+F, Search for "informationalUrls". Fill in the information.
72-
4. Save your changes.
72+
4. Save your changes by downloading the app manifest, modifying it, and uploading it.
7373

7474
```json
7575
"informationalUrls": {
@@ -80,12 +80,12 @@ If you prefer to modify the app object JSON directly, you can use the manifest e
8080

8181
### <a name="msgraph-rest-api"></a>Using the Microsoft Graph API
8282

83-
To programmatically update all your apps, you can use the Microsoft Graph API to update all your apps to include links to the terms of service and privacy statement documents.
83+
To programmatically [update your app](/graph/api/application-update?view=graph-rest-1.0&tabs=http), you can use the Microsoft Graph API to update all your apps to include links to the terms of service and privacy statement documents.
8484

8585
```
86-
PATCH https://graph.microsoft.com/v1.0/applications/{application id}
86+
PATCH https://graph.microsoft.com/v1.0/applications/{applicationObjectId}
8787
{
88-
    "appId": "{your application id}",
88+
    "appId": "{your application object id}",
8989
    "info": {
9090
        "termsOfServiceUrl": "<your_terms_of_service_url>",
9191
        "supportUrl": null,

0 commit comments

Comments
 (0)