Reputation: 73
I am trying to update an application using Microsoft graph API, programmatically. Steps i performed as follows:
Request URL: PATCH https://graph.microsoft.com/v1.0/applications/<-application obj ID->
When i execute from graph explorer, request gets completed successfully.
I get following error when done programmatically:
{"error": {
"code": "Authorization_RequestDenied",
"message": "Insufficient privileges to complete the operation.",
"innerError": {
"date": "2020-11-04T11:47:48",
"request-id": "132aba35-6d34-4940-8806-935ce581bd53",
"client-request-id": "132aba35-6d34-4940-8806-935ce581bd53"
}}}
I have granted following Application permissions for the app as shown in screenshot:
Any other permissions needed to update an application? Thanks in advance.
Upvotes: 0
Views: 493