A cloud-based identity and access management service for securing user authentication and resource access
Hello @Rajeev Kandpal,
The error you’re encountering typically occurs when your application is configured with Supported account types set to:
- Accounts in any organizational directory (Any Microsoft Entra ID tenant – Multitenant) and personal Microsoft accounts, or
- Personal Microsoft accounts only.
The permission you’re trying to add CopilotPackages.Read.All is not supported for Personal Microsoft Accounts. If your application manifest has the signInAudience value set to:
-
AzureADandPersonalMicrosoftAccountor -
PersonalMicrosoftAccount
you will receive the error:
"Unable to save changes. One or more of the following permission(s) are currently not supported."
To fix this, Update the signInAudience in your app registration to one of the following values:
-
AzureADMultipleOrgs(Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant)), or -
AzureADMyOrg(Accounts in this organizational directory only (Contoso only - Single tenant)).
Currently, this API permission is not supported for Personal Microsoft Accounts.