Skip to content

Commit 53b4b51

Browse files
Merge pull request #224399 from FaithOmbongi/docs-editor/delete-application-portal-1674143820
Update Microsoft Graph example - delete app
2 parents 32182bc + 22d9e27 commit 53b4b51

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/active-directory/manage-apps/delete-application-portal.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,24 @@ To delete an enterprise application, you need:
100100
:::zone pivot="ms-graph"
101101

102102
Delete an enterprise application using [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer).
103-
1. To get the list of applications in your tenant, run the following query.
103+
1. To get the list of service principals in your tenant, run the following query.
104+
104105

105106
```http
106-
GET /servicePrincipals
107+
GET https://graph.microsoft.com/v1.0/servicePrincipals
107108
```
109+
108110
1. Record the ID of the enterprise app you want to delete.
109111
1. Delete the enterprise application.
110-
112+
111113
```http
112-
DELETE /servicePrincipals/{id}
114+
DELETE https://graph.microsoft.com/v1.0/servicePrincipals/{servicePrincipal-id}
113115
```
114116

117+
115118
:::zone-end
116119

117120
## Next steps
118121

119122
- [Restore a deleted enterprise application](restore-application.md)
123+

0 commit comments

Comments
 (0)