Skip to main content
Skip table of contents

AzureAD - Client Credentials

URL

See a full list of available API endpoints of Azure here
In this example we want a list of all users

CODE
https://graph.microsoft.com/v1.0/users

Endpoints

Endpoints are service specific URLs for receiving an access token. Because we use client credentials flow we only need the Token endpoint

Token Endpoints:

CODE
Token Url: https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token

Scopes

Scopes define the permission to specific parts of data. Because we use client credentials flow we just set the scope to:

CODE
https://graph.microsoft.com/.default

Make sure an administrator grants the permissions you want to use in the Azure backend.

Authenticate

Now you can trigger the process by clicking Authenticate which should popup a window for a short moment and then retrieve the access token.
Now save & test the data source to make sure everything is working as expected.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.