skills/list-meetings-with-insights/SKILL.md
# List Meetings with Available Insights List Teams meetings for which AI-generated insights are available. Supports filtering by date range and participants. ## API Details - **API**: Microsoft 365 Copilot API - **Method**: GET - **Path**: `/copilot/meetings` - **Operation ID**: `listMeetingsWithInsights` - **Tag**: Meeting Insights - **OpenAPI**: [microsoft-copilot-api.yaml](../../openapi/microsoft-copilot-api.yaml) ## Sandbox Mock server URL: `http://localhost:8080/rest/microsoft-365-copi
npx skillsauth add naftiko/microsoft-365-copilot-sandbox skills/list-meetings-with-insightsInstall 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.
List Teams meetings for which AI-generated insights are available. Supports filtering by date range and participants.
/copilot/meetingslistMeetingsWithInsightsMock server URL: http://localhost:8080/rest/microsoft-365-copilot-apis/1.0.0/copilot/meetings
Authorization: Bearer {access-token}Copilot.MeetingInsights.Read| Parameter | In | Type | Required | Description |
|-----------|-----|------|----------|-------------|
| $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 |
| startDateTime | query | string (date-time) | No | Start of the date/time range (ISO 8601) |
| endDateTime | query | string (date-time) | No | End of the date/time range (ISO 8601) |
curl -X GET "http://localhost:8080/rest/microsoft-365-copilot-apis/1.0.0/copilot/meetings?$top=25&startDateTime=2025-09-01T00:00:00Z" \
-H "Authorization: Bearer {access-token}"
{
"value": [
{
"meetingId": "meeting-xyz-789",
"subject": "Q3 Product Roadmap Review",
"startDateTime": "2025-09-10T14:00:00Z",
"endDateTime": "2025-09-10T15:00:00Z",
"insightsAvailable": true
},
{
"meetingId": "meeting-uvw-456",
"subject": "Weekly Engineering Standup",
"startDateTime": "2025-09-09T09:00:00Z",
"endDateTime": "2025-09-09T09:30:00Z",
"insightsAvailable": true
}
],
"@odata.count": 2,
"@odata.nextLink": "https://graph.microsoft.com/v1.0/copilot/meetings?$skip=2&$top=25"
}
When the user wants to browse or list meetings that have AI-generated insights available, use this operation by making a GET request to /copilot/meetings. Filter by date range to narrow results. Use the returned meeting IDs to then fetch detailed insights for specific meetings.
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