Reputation: 97
I have successfully built and used an Azure multi-tenant application that uses MS-Graph.
I have now added one more graph api to the Application grant list. I have tested it in my own tenant. It works.
But when I look at the Permissions list in a different tenant (as an administrator of that other tenant), that new permission does not appear. Days have gone by since I originally set it up.
How can I refresh the list in the other tenant?
Upvotes: 2
Views: 348
Reputation: 5550
A new permission does not appear may be the target tenant will not be synchronized with the original tenant. Try to give permission on Grant admin consentand use URL then sign in with the target tenant's administrator account.
Go to Azure portal -> Azure Active Directory -> App registrations -> your application ->API permissions -> click select Grant admin consent
Using URL :
https://login.microsoftonline.com/{tenant-id}/adminconsent?client_id={client-id}
For your Reference:
Grant tenant-wide admin consent to an application
permission to grant permissions to applications,
Upvotes: 0