Hi,
We have configured an app registration in our Azure AD, and we tried added some API permissions to know what we need to execute:
az ad app update --id xxx --add replyUrls "https://example.com/testing/"
We realized that the right permissions are:
- Azure Active Directory Graph:
Application.ReadWrite.OwnedBy
Directory.Read.All
But Azure Active Directory Graph will be deprecated, and we tried to change by same permissions on Microsoft Graph. In this case, we tried to update the applications with the previous command, and we recieved the message: Insufficient privileges to complete the operation
Could be this a bug on Api Permissions?



