Delegate Permission in Azure app for Calendar Events

0
Hi Guys,   I’m using Graph Connector in my app for automatically scheduling meeting and successfully configured the authentication.  I would like to know which delegates permission need to be set for the same in Azure app.  Thanks in advance.
asked
1 answers
0

This implies that the organization is using Azure Active directory with managed users and not with federated users. Windows Auth with managed users is not supported with Windows Authentication (this is a windows restriction, not a UiPath restriction).

 

If this error is encountered, use
'Username and Password' authentication or
grant the Application ID, mailbox permissions and use 'Application ID and Secret' flow.
Also see: Azure Graph API Background.


Restrict Azure Application Permissions to specific mailbox

It can be done by following the instructions from Limiting Application Permissions to specific Exchange Online Mailboxes 10
After this has done, make sure that the Application ID has Application permissions set that allow for the reading and sending of mail as mentioned in Office 365 Setup 4 .
Azure Graph API Background

Azure Graph API offers two ways of defining application permissions in Azure. One is delegated permissions and the other is application permissions.


Delegated requires a user to present their credentials along with the application ID. This allows the Application ID to acquire the exact same permissions and access rights as the user that present their credentials. Often times this is the preferred method, however, it is not  printable 2023 calendar compatible with windows Auth when Azure Active directory is used with managed users.


The other option is Application Permissions. By default, these permissions give the Application ID permission to everything and in most cases, it is better to add additional restrictions around what can be accessed.

answered