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

  1. Select Azure Active Directory from the left menu.

  2. Click on App registrations and then New registration.

  3. Enter a name for your application (e.g., SharePoint Upload Webhook).

  4. Choose the appropriate Supported account types (e.g., single-tenant).

  5. 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

  1. Go to Certificates & secrets in the left sidebar.

  2. Click New client secret.

  3. Add a description, choose an expiration period, and click Add.

  4. Ensure to copy the secret value as you won't be able to view it again.

Set API permissions

  1. Click on API permissions in the left sidebar.

  2. 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.

If your selected permissions require admin consent, click the Grant admin consent for [Your Organisation] button.

Last updated