14 KiB
Microsoft 365 Copilot Setup Guide for Fabric
This guide walks you through setting up and using Microsoft 365 Copilot with Fabric CLI. Microsoft 365 Copilot provides AI capabilities grounded in your organization's Microsoft 365 data, including emails, documents, meetings, and more.
NOTE: As per the conversation in discussion 1853 - enterprise users with restrictive consent policies will probably need their IT admin to either create an app registration with the required permissions, or grant admin consent for an existing app like Graph Explorer.
Table of Contents
- What is Microsoft 365 Copilot?
- Requirements
- Azure AD App Registration
- Obtaining Access Tokens
- Configuring Fabric for Copilot
- Testing Your Setup
- Usage Examples
- Troubleshooting
- API Limitations
What is Microsoft 365 Copilot?
Microsoft 365 Copilot is an AI-powered assistant that works across Microsoft 365 applications. When integrated with Fabric, it allows you to:
- Query your organization's data: Ask questions about emails, documents, calendars, and Teams chats
- Grounded responses: Get AI responses that are based on your actual Microsoft 365 content
- Enterprise compliance: All interactions respect your organization's security policies, permissions, and sensitivity labels
Why Use Microsoft 365 Copilot with Fabric?
- Enterprise-ready: Built for organizations with compliance requirements
- Data grounding: Responses are based on your actual organizational data
- Unified access: Single integration for all Microsoft 365 content
- Security: Respects existing permissions and access controls
Requirements
Before you begin, ensure you have:
Licensing Requirements
- Microsoft 365 Copilot License: Required for each user accessing the API
- Microsoft 365 E3 or E5 Subscription (or equivalent): Foundation for Copilot services
Technical Requirements
- Azure AD Tenant: Your organization's Azure Active Directory
- Azure AD App Registration: To authenticate with Microsoft Graph
- Delegated Permissions: The Chat API only supports delegated (user) permissions, not application permissions
Permissions Required
The following Microsoft Graph permissions are needed:
| Permission | Type | Description |
|---|---|---|
Sites.Read.All |
Delegated | Read SharePoint sites |
Mail.Read |
Delegated | Read user's email |
People.Read.All |
Delegated | Read organization's people directory |
OnlineMeetingTranscript.Read.All |
Delegated | Read meeting transcripts |
Chat.Read |
Delegated | Read Teams chat messages |
ChannelMessage.Read.All |
Delegated | Read Teams channel messages |
ExternalItem.Read.All |
Delegated | Read external content connectors |
Azure AD App Registration
Step 1: Create the App Registration
- Go to the Azure Portal
- Navigate to Azure Active Directory > App registrations
- Click New registration
- Configure the application:
- Name:
Fabric CLI - Copilot - Supported account types: Select "Accounts in this organizational directory only"
- Redirect URI: Select "Public client/native (mobile & desktop)" and enter
http://localhost:8400/callback
- Name:
- Click Register
Step 2: Note Your Application IDs
After registration, note these values from the Overview page:
- Application (client) ID: e.g.,
12345678-1234-1234-1234-123456789abc - Directory (tenant) ID: e.g.,
abcdef12-3456-7890-abcd-ef1234567890
Step 3: Configure API Permissions
- Go to API permissions in your app registration
- Click Add a permission
- Select Microsoft Graph
- Select Delegated permissions
- Add the following permissions:
Sites.Read.AllMail.ReadPeople.Read.AllOnlineMeetingTranscript.Read.AllChat.ReadChannelMessage.Read.AllExternalItem.Read.Alloffline_access(for refresh tokens)
- Click Add permissions
- Important: Click Grant admin consent for [Your Organization] (requires admin privileges)
Step 4: Configure Authentication (Optional - For Confidential Clients)
If you want to use client credentials for token refresh:
- Go to Certificates & secrets
- Click New client secret
- Add a description and select an expiration
- Click Add
- Important: Copy the secret value immediately (it won't be shown again)
Obtaining Access Tokens
The Microsoft 365 Copilot Chat API requires delegated permissions, meaning you need to authenticate as a user. There are several ways to obtain tokens:
Option 1: Using Azure CLI (Recommended for Development)
# Install Azure CLI if not already installed
# https://docs.microsoft.com/en-us/cli/azure/install-azure-cli
# Login with your work account
az login --tenant YOUR_TENANT_ID
# Get an access token for Microsoft Graph
az account get-access-token --resource https://graph.microsoft.com --query accessToken -o tsv
Option 2: Using Device Code Flow
For headless environments or when browser authentication isn't possible:
# Request device code
curl -X POST "https://login.microsoftonline.com/YOUR_TENANT_ID/oauth2/v2.0/devicecode" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "client_id=YOUR_CLIENT_ID&scope=Sites.Read.All Mail.Read People.Read.All OnlineMeetingTranscript.Read.All Chat.Read ChannelMessage.Read.All ExternalItem.Read.All offline_access"
# Follow the instructions to authenticate in a browser
# Then poll for the token using the device_code from the response
Option 3: Using Microsoft Graph Explorer (For Testing)
- Go to Microsoft Graph Explorer
- Sign in with your work account
- Click the gear icon > "Select permissions"
- Enable the required permissions
- Use the access token from the "Access token" tab
Option 4: Using MSAL Libraries
For production applications, use Microsoft Authentication Library (MSAL):
// Example using Azure Identity SDK for Go
import "github.com/Azure/azure-sdk-for-go/sdk/azidentity"
cred, err := azidentity.NewInteractiveBrowserCredential(&azidentity.InteractiveBrowserCredentialOptions{
TenantID: "YOUR_TENANT_ID",
ClientID: "YOUR_CLIENT_ID",
})
Configuring Fabric for Copilot
Method 1: Using Fabric Setup (Recommended)
-
Run Fabric Setup:
fabric --setup -
Select Copilot from the menu:
- Find
Copilotin the numbered list - Enter the number and press Enter
- Find
-
Enter Configuration Values:
[Copilot] Enter your Azure AD Tenant ID: > contoso.onmicrosoft.com [Copilot] Enter your Azure AD Application (Client) ID: > 12345678-1234-1234-1234-123456789abc [Copilot] Enter your Azure AD Client Secret (optional): > (press Enter to skip, or enter secret for token refresh) [Copilot] Enter a pre-obtained OAuth2 Access Token: > eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIs... [Copilot] Enter a pre-obtained OAuth2 Refresh Token (optional): > (press Enter to skip, or enter refresh token) [Copilot] Enter your timezone: > America/New_York
Method 2: Manual Configuration
Edit ~/.config/fabric/.env:
# Microsoft 365 Copilot Configuration
COPILOT_TENANT_ID=contoso.onmicrosoft.com
COPILOT_CLIENT_ID=12345678-1234-1234-1234-123456789abc
COPILOT_CLIENT_SECRET=your-client-secret-if-applicable
COPILOT_ACCESS_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIs...
COPILOT_REFRESH_TOKEN=your-refresh-token-if-available
COPILOT_API_BASE_URL=https://graph.microsoft.com/beta/copilot
COPILOT_TIME_ZONE=America/New_York
Verify Configuration
fabric --listmodels | grep -i copilot
Expected output:
[X] Copilot|microsoft-365-copilot
Testing Your Setup
Basic Test
# Simple query
echo "What meetings do I have tomorrow?" | fabric --vendor Copilot
# With explicit model (though there's only one)
echo "Summarize my recent emails" | fabric --vendor Copilot --model microsoft-365-copilot
Test with Streaming
echo "What are the key points from my last team meeting?" | \
fabric --vendor Copilot --stream
Test with Patterns
# Use a pattern with Copilot
echo "Find action items from my recent emails" | \
fabric --pattern extract_wisdom --vendor Copilot
Usage Examples
Query Calendar
echo "What meetings do I have scheduled for next week?" | fabric --vendor Copilot
Summarize Emails
echo "Summarize the emails I received yesterday from my manager" | fabric --vendor Copilot
Search Documents
echo "Find documents about the Q4 budget proposal" | fabric --vendor Copilot
Team Collaboration
echo "What were the main discussion points in the engineering standup channel this week?" | fabric --vendor Copilot
Meeting Insights
echo "What action items came out of the project review meeting on Monday?" | fabric --vendor Copilot
Using with Fabric Patterns
# Extract wisdom from organizational content
echo "What are the key decisions from last month's leadership updates?" | \
fabric --pattern extract_wisdom --vendor Copilot
# Summarize with a specific pattern
echo "Summarize the HR policy document about remote work" | \
fabric --pattern summarize --vendor Copilot
Troubleshooting
Error: "Authentication failed" or "401 Unauthorized"
Cause: Invalid or expired access token
Solutions:
-
Obtain a fresh access token:
az account get-access-token --resource https://graph.microsoft.com --query accessToken -o tsv -
Update your configuration:
fabric --setup # Select Copilot and enter the new token -
Check token hasn't expired (tokens typically expire after 1 hour)
Error: "403 Forbidden"
Cause: Missing permissions or admin consent not granted
Solutions:
- Verify all required permissions are added to your app registration
- Ensure admin consent has been granted
- Check that your user has a Microsoft 365 Copilot license
Error: "Failed to create conversation"
Cause: API access issues or service unavailable
Solutions:
- Verify the API base URL is correct:
https://graph.microsoft.com/beta/copilot - Check Microsoft 365 service status
- Ensure your organization has Copilot enabled
Error: "Rate limit exceeded"
Cause: Too many requests
Solutions:
- Wait a few minutes before retrying
- Reduce request frequency
- Consider batching queries
Token Refresh Not Working
Cause: Missing client secret or refresh token
Solutions:
- Ensure you have both a refresh token and client secret configured
- Re-authenticate to get new tokens
- Check that your app registration supports refresh tokens (public client)
API Limitations
Current Limitations
- Preview API: The Chat API is currently in preview (
/betaendpoint) and subject to change - Delegated Only: Only delegated (user) permissions are supported, not application permissions
- Single Model: Copilot exposes a single unified model, unlike other vendors with multiple model options
- Enterprise Only: Requires Microsoft 365 work or school accounts
- Licensing: Requires Microsoft 365 Copilot license per user
Rate Limits
The Microsoft Graph API has rate limits that apply:
- Per-app limits
- Per-user limits
- Tenant-wide limits
Consult Microsoft Graph throttling guidance for details.
Data Freshness
Copilot indexes data from Microsoft 365 services. There may be a delay between when content is created and when it becomes available in Copilot responses.
Additional Resources
Microsoft Documentation
- Microsoft 365 Copilot APIs Overview
- Chat API Documentation
- Microsoft Graph Authentication
- Azure AD App Registration
Fabric Documentation
Summary
Microsoft 365 Copilot integration with Fabric provides enterprise-ready AI capabilities grounded in your organization's data. Key points:
- Enterprise compliance: Works within your organization's security and compliance policies
- Data grounding: Responses are based on your actual Microsoft 365 content
- Single model: Exposes one unified AI model (
microsoft-365-copilot) - Delegated auth: Requires user authentication (OAuth2 with delegated permissions)
- Preview API: Currently in beta; expect changes
Quick Start Commands
# 1. Set up Azure AD app registration (see guide above)
# 2. Get access token
az login --tenant YOUR_TENANT_ID
ACCESS_TOKEN=$(az account get-access-token --resource https://graph.microsoft.com --query accessToken -o tsv)
# 3. Configure Fabric
fabric --setup
# Select Copilot, enter tenant ID, client ID, and access token
# 4. Test it
echo "What meetings do I have this week?" | fabric --vendor Copilot
Happy prompting with Microsoft 365 Copilot!