This is an old revision of the document!
Table of Contents
App Registration & API Permissions
This guide walks you through creating an App Registration in Entra ID (formerly Azure Active Directory) for Chipmunk, and assigning the necessary Microsoft Graph and Exchange permissions.
Overview
Chipmunk uses Microsoft Graph and Exchange APIs to back up OneDrive, Exchange, and Teams data for disabled users. You'll need to register an app in your Azure tenant and grant it the correct permissions.
Step 1: Decide Your Internal DNS Name
Before you register the app, decide what DNS name your Chipmunk appliance will use (e.g., chipmunk.yourcompany.local
). This will be used in the redirect URI.
Also ensure you have:
- A TLS certificate matching that DNS name.
- A DNS A-record pointing to your Chipmunk appliance’s internal IP.
Step 2: Create the App Registration
1. Go to Azure Portal 2. Search for App registrations and click + New registration 3. Enter:
- Name:
ChipmunkApp
- Supported account types: *Accounts in this organizational directory only*
- Redirect URI (Web):
https://chipmunk.smikar.com/api/auth/callback/azure-ad https://chipmunk.smikar.com:3000/api/auth/callback/azure-ad
4. Click Register
Step 3: Save Your App Details
After registration, copy these values from the Overview page:
- Application (client) ID
- Directory (tenant) ID
You'll use these during Chipmunk's first-time configuration.
Step 4: Add a Client Secret
1. Go to Certificates & secrets
2. Click + New client secret
3. Name it something like ChipmunkSecret
4. Set expiry to 12 or 24 months
5. Click Add
→ Important: Copy the Value immediately — you won't be able to see it again.
Step 5: Assign API Permissions
Navigate to API permissions > + Add a permission > Microsoft Graph > Application permissions
Add the following:
Type | Permission Name | Description |
---|---|---|
Application | `User.Read.All` | Read all users' full profiles |
Application | `Group.Read.All` | Read all groups |
Application | `Files.Read.All` | Read all files in site collections |
Application | `Files.ReadWrite.All` | Read and write files in site collections |
Application | `Mail.Read` | Read mail in all mailboxes |
Application | `Mail.Send` | Send mail as any user |
Application | `ChannelMessage.Read.All` | Read all Teams channel messages |
Application | `Chat.Read.All` | Read all Teams chat messages |
Application | `Chat.ReadBasic.All` | Read names and members of chat threads |
Application | `Sites.Read.All` | Read SharePoint site items |
Application | `Sites.ReadWrite.All` | Read/write SharePoint site items |
Application | `Team.ReadBasic.All` | List all Microsoft Teams |
Application | `TeamMember.Read.All` | Read members of all Teams |
Application | `TeamSettings.Read.All` | Read all Teams’ settings |
Application | `TeamSettings.ReadWrite.All` | Read/change Teams’ settings |
Application | `Contacts.Read` | Read contacts in all mailboxes |
Application | `Calendars.Read` | Read calendars in all mailboxes |
Application | `AuditLog.Read.All` | Read audit logs |
Application | `Directory.Read.All` | Read directory data |
Then click:
- + Add a permission
- Choose Office 365 Exchange Online
- Select `full_access_as_app` (Application)
Step 6: Grant Admin Consent
Click Grant admin consent for [Your Tenant Name] and confirm. All permissions should show as “Granted”.
Optional: Configure Authentication Settings
Under Authentication, verify:
- Redirect URI: `https://chipmunk.YOURDOMAIN/api/auth/callback/azure-ad`
- ✅ ID tokens checked under “Implicit grant and hybrid flows”
What to Use During Chipmunk Setup
When the Chipmunk appliance launches, you’ll enter:
- ✅ Tenant ID
- ✅ Client ID
- ✅ Client Secret
- ✅ Redirect URI domain (must match your DNS/cert setup)
Need help with DNS or TLS? → View DNS & Certificate Setup
chipmunk azure appregistration graphapi permissions setup