Skip to main content

app permission add

Adds the specified application and/or delegated permissions to the current Microsoft Entra app API permissions

Usage

m365 app permission add [options]

Options

--appId [appId]

Client ID of the Microsoft Entra app registered in the .m365rc.json file to retrieve API permissions for.

--applicationPermission [applicationPermission]

Space-separated list of application permissions to add.

--delegatedPermission [delegatedPermission]

Space-separated list of delegated permissions to add.

--grantAdminConsent

If specified, admin consent to the newly added permissions will be granted.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

If you have multiple apps registered in your .m365rc.json file, you can specify the app for which you'd like to retrieve permissions using the --appId option. If you don't specify the app using the --appId option, you'll be prompted to select one of the applications from your .m365rc.json file.

Examples

Adds the specified application permissions to the default app registered in the .m365rc.json file while granting admin consent.

m365 app permission add --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --grantAdminConsent

Adds the specified delegated permissions to the default app registered in the .m365rc.json file without granting admin consent.

m365 app permission add --delegatedPermission 'https://graph.microsoft.com/offline_access'

Adds the specified application and delegated permissions to a specific app registered in the .m365rc.json file while granting admin consent.

m365 app permission add --appId '1663767b-4172-4519-bfd1-28e6ff19055b' --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --delegatedPermission 'https://graph.microsoft.com/offline_access' --grantAdminConsent

Response

The command won't return a response on success.

CTRL + M