Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/docs/cmd/entra/app/app-permission-add.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,25 @@ m365 entra appregistration permission add [options]

Scopes/Roles to grant must be fully-qualified so that we can disambiguate them between the different resources.

## Permissions

<Tabs>
<TabItem value="Delegated">

| Resource | Permissions |
|------------------|---------------------------|
| Microsoft Graph | Application.ReadWrite.All |

</TabItem>
<TabItem value="Application">

| Resource | Permissions |
|------------------|---------------------------|
| Microsoft Graph | Application.ReadWrite.All |

</TabItem>
</Tabs>

## Examples

Grant multiple delegated API permissions to a Microsoft Entra app specified by client id.
Expand Down
19 changes: 19 additions & 0 deletions docs/docs/cmd/entra/app/app-permission-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,25 @@ m365 entra app permission list [options]

For best performance use the `objectId` option to reference the Entra application registration to get. If you use `appId`, this command will first need to find the corresponding object ID for that application.

## Permissions

<Tabs>
<TabItem value="Delegated">

| Resource | Permissions |
|------------------|----------------------|
| Microsoft Graph | Application.Read.All |

</TabItem>
<TabItem value="Application">

| Resource | Permissions |
|------------------|----------------------|
| Microsoft Graph | Application.Read.All |

</TabItem>
</Tabs>

## Examples

Retrieves all permissions for an Entra application registration specified by client id.
Expand Down
19 changes: 19 additions & 0 deletions docs/docs/cmd/entra/app/app-permission-remove.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,25 @@ m365 entra app permission remove [options]

Removing permissions on App Registrations does not immediately remove consent given by an administrator. Explicitly instruct the CLI to revoke consent by using the `--revokeAdminConsent` flag.

## Permissions

<Tabs>
<TabItem value="Delegated">

| Resource | Permissions |
|------------------|---------------------------|
| Microsoft Graph | Application.ReadWrite.All |

</TabItem>
<TabItem value="Application">

| Resource | Permissions |
|------------------|---------------------------|
| Microsoft Graph | Application.ReadWrite.All |

</TabItem>
</Tabs>

## Examples

Remove multiple delegated API permissions from an Entra app registration
Expand Down
Loading