Setup
Setting up the Odoo Excel Online Connector requires several pieces of information from your Microsoft Azure and OneDrive environment. Below is a guide on how to locate each required value
1. Tenant ID
Where to Find:
Log in to the Azure Portal.
Navigate to Azure Active Directory from the left sidebar.
Under Overview, you will see the Tenant ID (a GUID format, e.g.,
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
).

2. Client ID (Application ID)

3. Client Secret
Where to Find:
In your application’s page in App registrations, click on Certificates & secrets.
Under Client secrets, click New client secret.
Add a description and select an expiry period, then click Add.

4. User UPN (User Principal Name)
Where to Find:
Go to the Microsoft 365 Admin Center or Azure Portal.
Navigate to Users > Active users.
Locate the user whose OneDrive will be used for Excel exports.
The User Principal Name is their login email address (e.g.,
user@yourcompany.com
)6.

5. Drive ID
Where to Find:
The Drive ID is a unique identifier for the user’s OneDrive.
You can obtain it using the Microsoft Graph Explorer:
Make a GET request to:
https://graph.microsoft.com/v1.0/users/{user-upn}/drive
The response will include
"id": "drive-id-here"
.
Some connectors fetch this automatically after you enter the User UPN and credentials3.
6. Workbook File ID
Where to Find:
Open the target Excel file in OneDrive.
Check the URL in your browser. The File ID is usually the long string after
id=
or/file/
in the URL, for example:texthttps://onedrive.live.com/edit.aspx?cid=XXXXXXX&id=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
The value after
id=
is your Workbook File ID.
7. Access Token
Quick Reference Table
Tenant ID
Azure Portal → Azure Active Directory → Overview
Client ID
Azure Portal → App registrations → Your App → Overview
Client Secret
Azure Portal → App registrations → Certificates & secrets
User UPN
Microsoft 365 Admin Center → Users → Active users
Drive ID
Microsoft Graph API: /users/{user-upn}/drive
or auto-fetched
Workbook File ID
In OneDrive Excel file URL (id=
parameter)
Access Token
Auto-generated by connector
Support & Resources
Your module provider’s support channels
Tip: If you are unsure about any of these steps, contact your Azure/Microsoft 365 administrator for assistance—they can help you retrieve or generate the necessary values.
Last updated