{ "opencollection": "1.0.0", "info": { "name": "Microsoft Graph and Service Principals App Role Assignments Applications API", "version": "v1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Applications", "type": "folder" }, "items": [ { "info": { "name": "Active Directory List Applications", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/applications", "params": [ { "name": "$filter", "value": "", "type": "query", "description": "OData filter expression (e.g. displayName eq 'My App')" }, { "name": "$select", "value": "", "type": "query" }, { "name": "$top", "value": "", "type": "query" }, { "name": "$search", "value": "", "type": "query" } ] }, "docs": "Retrieve the list of applications registered in the Microsoft Entra tenant. Returns application objects representing registered apps (not service principals). Supports OData query parameters for filtering and pagination." }, { "info": { "name": "Active Directory Create Application", "type": "http" }, "http": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/applications", "body": { "type": "json", "data": "{}" } }, "docs": "Register a new application in Microsoft Entra ID. The application object is the global registration; a service principal is automatically created in the home tenant (or must be created separately in other tenants)." }, { "info": { "name": "Active Directory Get Application", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/applications/:applicationId", "params": [ { "name": "applicationId", "value": "", "type": "path", "description": "Application object ID (not the appId/client ID)" } ] }, "docs": "Retrieve the properties of an application registration by its object ID." }, { "info": { "name": "Active Directory Update Application", "type": "http" }, "http": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/applications/:applicationId", "params": [ { "name": "applicationId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the properties of an application registration." }, { "info": { "name": "Active Directory Delete Application", "type": "http" }, "http": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/applications/:applicationId", "params": [ { "name": "applicationId", "value": "", "type": "path" } ] }, "docs": "Delete an application registration from Microsoft Entra ID. The deleted application is soft-deleted (moved to the recycle bin) and can be restored within 30 days." } ] } ], "bundled": true }