skills/get-per-user-usage-details/SKILL.md
# Get Per-User Copilot Usage Details Retrieve detailed per-user usage data for Microsoft 365 Copilot, including feature-level breakdowns. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: GET - **Path**: `/reports/copilot/usage/userDetail` - **Operation ID**: `getCopilotUsageUserDetail` - **Tag**: Usage Reports - **OpenAPI**: [microsoft-copilot-api.yaml](../../openapi/microsoft-copilot-api.yaml) ## Sandbox Mock server URL: `http://localhost:8080/rest/microsoft-365-copilot-ap
npx skillsauth add naftiko/microsoft-365-copilot-sandbox skills/get-per-user-usage-detailsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Retrieve detailed per-user usage data for Microsoft 365 Copilot, including feature-level breakdowns.
/reports/copilot/usage/userDetailgetCopilotUsageUserDetailMock server URL: http://localhost:8080/rest/microsoft-365-copilot-apis/1.0.0/reports/copilot/usage/userDetail
Authorization: Bearer {access-token}Reports.Read.All| Parameter | In | Type | Required | Description |
|-----------|-----|------|----------|-------------|
| period | query | string | Yes | Reporting period: D7, D30, D90, or D180 |
| $top | query | integer | No | Maximum number of results (1-999, default 25) |
| $skip | query | integer | No | Number of results to skip for pagination |
| $filter | query | string | No | OData filter expression |
curl -X GET "http://localhost:8080/rest/microsoft-365-copilot-apis/1.0.0/reports/copilot/usage/userDetail?period=D30&$top=25" \
-H "Authorization: Bearer {access-token}"
{
"value": [
{
"userId": "user-abc-123",
"userPrincipalName": "[email protected]",
"displayName": "Jane Doe",
"lastActivityDate": "2025-09-10",
"wordUsed": true,
"excelUsed": true,
"powerPointUsed": false,
"outlookUsed": true,
"teamsUsed": true,
"oneNoteUsed": false,
"loopUsed": false,
"copilotChatUsed": true
},
{
"userId": "user-def-456",
"userPrincipalName": "[email protected]",
"displayName": "John Smith",
"lastActivityDate": "2025-09-09",
"wordUsed": false,
"excelUsed": true,
"powerPointUsed": true,
"outlookUsed": true,
"teamsUsed": true,
"oneNoteUsed": true,
"loopUsed": false,
"copilotChatUsed": false
}
],
"@odata.count": 2,
"@odata.nextLink": "https://graph.microsoft.com/v1.0/reports/copilot/usage/userDetail?$skip=2&$top=25"
}
When the user wants to see per-user Copilot usage details including which applications each user has used, use this operation by making a GET request to /reports/copilot/usage/userDetail. The period parameter is required. Results show per-user feature-level usage breakdowns across all Microsoft 365 applications.
development
# Renew or Update a Subscription Renew or update the configuration of an existing Copilot change notification subscription. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: PATCH - **Path**: `/copilot/subscriptions/{subscriptionId}` - **Operation ID**: `updateCopilotSubscription` - **Tag**: Change Notifications - **OpenAPI**: [microsoft-copilot-api.yaml](../../openapi/microsoft-copilot-api.yaml) ## Sandbox Mock server URL: `http://localhost:8080/rest/microsoft-365-copilot-a
development
# Update a Package Update configuration or status of an app or agent deployed in Microsoft 365. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: PATCH - **Path**: `/copilot/packages/{packageId}` - **Operation ID**: `updateCopilotPackage` - **Tag**: Packages - **OpenAPI**: [microsoft-copilot-api.yaml](../../openapi/microsoft-copilot-api.yaml) ## Sandbox Mock server URL: `http://localhost:8080/rest/microsoft-365-copilot-apis/1.0.0/copilot/packages/{packageId}` ## Required He
development
# Send a Message to Microsoft 365 Copilot Enable conversational experiences powered by Microsoft 365 Copilot. Send user messages and receive AI-generated responses grounded in Microsoft 365 data and user context. Supports multi-turn conversations. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: POST - **Path**: `/copilot/chat/completions` - **Operation ID**: `createChatCompletion` - **Tag**: Chat Completions - **OpenAPI**: [microsoft-copilot-api.yaml](../../openapi/microsoft
development
# Search OneDrive Content Using Natural Language Perform hybrid search (semantic and lexical) across OneDrive for work or school content using natural language queries. Results are returned with contextual understanding and intelligent ranking while maintaining security and compliance. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: POST - **Path**: `/copilot/search/query` - **Operation ID**: `querySearchContent` - **Tag**: Content Search - **OpenAPI**: [microsoft-copilot-ap