Skip to content

Commit 79397f5

Browse files
authored
Updates from editor
1 parent 35bd4e1 commit 79397f5

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

support/entra/entra-id/users-groups-entra-apis/add-owner-for-application-microsoft-graph.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Add an owner to an application using Microsoft Graph
2+
title: Add an Owner to an Application Using Microsoft Graph
33
description: Introduces how to add an owner (service principle) to an application using Microsoft Graph.
44
ms.date: 04/02/2025
55
ms.reviewer: willfid, v-weizhu
@@ -14,18 +14,18 @@ This article outlines the required permission and step-by-step instructions to a
1414

1515
## Required permission
1616

17-
The least privileged permissions for adding an owner to an application are described in the [Add owner - Permissions](/graph/api/application-post-owners#permissions) table. Those permissions, such as `Application.ReadWrite.OwnedBy`, allow an application to manage applications in which it is an owner of.
17+
The least privileged permissions for adding an owner to an application are described in the [Add owner - Permissions](/graph/api/application-post-owners#permissions) table. These permissions, such as `Application.ReadWrite.OwnedBy`, allow an application to manage applications of which it is an owner.
1818

1919
## Add an owner
2020

21-
Application owners can be individual users, the associated service principal, or another service principal. The following sections describes how to add the related service principal to an application as an owner.
21+
Application owners can be individual users, the associated service principal, or another service principal. The following section describes how to add the related service principal to an application as an owner.
2222

2323
### Step 1: Get the application's Object ID
2424

2525
To get the **Object ID** of the application you want to add an owner to, follow these steps:
2626

2727
1. Sign in to the [Azure portal](https://portal.azure.com).
28-
2. Navigate to Microsoft Entra admin center.
28+
2. Navigate to the Microsoft Entra admin center.
2929
3. Browse to **Identity** > **Applications** > **App registrations**.
3030
4. Locate the application and copy its **Object ID**.
3131

@@ -36,15 +36,15 @@ To get the **Object ID** of the application you want to add an owner to, follow
3636
To get the **Object ID** of the service principal associated with the application, follow these steps:
3737

3838
1. Sign in to the [Azure portal](https://portal.azure.com).
39-
2. Navigate to Microsoft Entra admin center.
39+
2. Navigate to the Microsoft Entra admin center.
4040
3. Browse to **Identity** > **Applications** > **Enterprise registrations**.
4141
4. Locate the application and copy its **Object ID**.
4242

4343
:::image type="content" source="media/add-owner-for-application-microsoft-graph/service-principle-object-id.png" alt-text="Screenshot that shows an service principal's Object ID.":::
4444

4545
### Step 3: Add the owner to the application
4646

47-
Here are two methods to do this:
47+
Here're two methods to do this:
4848

4949
- [Method 1: Using Microsoft Graph Explorer](#method-1-using-microsoft-graph-explorer)
5050
- [Method 2: Using Microsoft Graph PowerShell](#method-2-using-microsoft-graph-powershell)
@@ -89,13 +89,13 @@ You might encounter the following error during this process:
8989
}
9090
```
9191

92-
To resolve it, consent to the API permission **Application.ReadWrite.All** for Microsoft Graph Explorer under the **Modify permissions** tab.
92+
To resolve the issue, consent to the API permission **Application.ReadWrite.All** for Microsoft Graph Explorer under the **Modify permissions** tab.
9393

9494
:::image type="content" source="media/add-owner-for-application-microsoft-graph/modify-permissions.png" alt-text="Screenshot that shows how to modify permission in Microsoft Graph Explorer." lightbox="media/add-owner-for-application-microsoft-graph/modify-permissions.png":::
9595

9696
#### Method 2: Using Microsoft Graph PowerShell
9797

98-
Here are example Microsoft Graph PowerShell scripts to add an owner to an application:
98+
Here's an example of Microsoft Graph PowerShell scripts to add an owner to an application:
9999

100100
```powershell
101101
Connect-MgGraph -Scopes Application.ReadWrite.All

0 commit comments

Comments
 (0)