You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: support/entra/entra-id/users-groups-entra-apis/add-owner-for-application-microsoft-graph.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Add an owner to an application using Microsoft Graph
2
+
title: Add an Owner to an Application Using Microsoft Graph
3
3
description: Introduces how to add an owner (service principle) to an application using Microsoft Graph.
4
4
ms.date: 04/02/2025
5
5
ms.reviewer: willfid, v-weizhu
@@ -14,18 +14,18 @@ This article outlines the required permission and step-by-step instructions to a
14
14
15
15
## Required permission
16
16
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.
18
18
19
19
## Add an owner
20
20
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.
22
22
23
23
### Step 1: Get the application's Object ID
24
24
25
25
To get the **Object ID** of the application you want to add an owner to, follow these steps:
26
26
27
27
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.
29
29
3. Browse to **Identity** > **Applications** > **App registrations**.
30
30
4. Locate the application and copy its **Object ID**.
31
31
@@ -36,15 +36,15 @@ To get the **Object ID** of the application you want to add an owner to, follow
36
36
To get the **Object ID** of the service principal associated with the application, follow these steps:
37
37
38
38
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.
40
40
3. Browse to **Identity** > **Applications** > **Enterprise registrations**.
41
41
4. Locate the application and copy its **Object ID**.
42
42
43
43
:::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.":::
44
44
45
45
### Step 3: Add the owner to the application
46
46
47
-
Here are two methods to do this:
47
+
Here're two methods to do this:
48
48
49
49
-[Method 1: Using Microsoft Graph Explorer](#method-1-using-microsoft-graph-explorer)
50
50
-[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:
89
89
}
90
90
```
91
91
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.
93
93
94
94
:::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":::
95
95
96
96
#### Method 2: Using Microsoft Graph PowerShell
97
97
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:
0 commit comments