Azure configuration
The integration requires a Webhook Bot App in Azure to upload documents back to SharePoint. This page will guide you through the Azure configuration.
Create an Azure App Registration
Follow these steps on the Azure Portal, after logging in with your credentials.
Register a New Application
Select Azure Active Directory from the left menu.
Click on App registrations and then New registration.
Enter a name for your application (e.g.,
SharePoint Upload Webhook
).Choose the appropriate Supported account types (e.g.,
single-tenant
).Click Register.

Configure the application settings
Application overview
Note down your Application (client) ID and Directory (tenant) ID displayed on the overview page, these will be used in the next steps.

Create a client secret
Go to Certificates & secrets in the left sidebar.
Click New client secret.
Add a description, choose an expiration period, and click Add.
Ensure to copy the secret value as you won't be able to view it again.


Set API permissions
Navigate to API Permissions
Click on API permissions in the left sidebar.
Click Add a permission and select Microsoft Graph.
Grant required permissions
Select Application permissions. And choose: Application: Sites.ReadWrite.All
and User.Read.All
.
Finally, click on Add permissions.
Grant admin consent (if needed)
If your selected permissions require admin consent, click the Grant admin consent for [Your Organisation] button.

Last updated