Sreekanth Jagaleti
Sreekanth Jagaleti

Reputation: 59

Unable to update appRoles in azure manifest

I'm unable to add new roles to my application manifest file in azure. Getting some random error

"Error detail: The client ID provided could not be found. [LLn0W]".

After some research, I came to know that only global/directory admins can update manifest file. My question is, why is it restricted to only admins? Why not enabled for application owners?

enter image description here

Upvotes: 2

Views: 1446

Answers (2)

Tony Ju
Tony Ju

Reputation: 15609

My question is, why is it restricted to only admins? Why not enabled for application owners?

If you are owner of the application, you are able to add new roles to your application manifest.

I am in my AD with User role.

enter image description here

When I try to edit the manifest of an application which I am not an owner of it. It told me that I do not have insufficient permission.

enter image description here

Then I use admin account grant me the owner role for this application. Now I can add approles successfully.

enter image description here

Upvotes: 1

SunnySun
SunnySun

Reputation: 1925

After some research, I came to know that only global/directory admins can update manifest file.

If you are the owner of the app and not an admin in the Azure AD, you also have the privilege to edit the approle in the manifest. For normal users, not an owner or admin, they will have no sufficient privilege to make it.

enter image description here

Upvotes: 1

Related Questions