Microsoft 365 Copilot website screenshot

Microsoft 365 Copilot

Microsoft 365 Copilot is an AI-powered productivity tool that combines large language models (LLMs) with Microsoft 365 apps and business data to enhance creativity, productivity, and skills across Microsoft 365 applications.

4 APIs 0 Features
Artificial IntelligenceCopilotEnterpriseLLMMicrosoft 365Natural Language ProcessingProductivity

APIs

Microsoft Graph API

The Microsoft Graph API provides access to Microsoft 365 data and services, enabling developers to integrate Copilot functionality with user data, documents, emails, calendar, a...

Microsoft Copilot Studio API

Microsoft Copilot Studio allows developers to create, customize, and extend Copilot experiences with custom plugins and connectors to integrate business-specific data and workfl...

Microsoft 365 Copilot Extensibility API

API for extending Microsoft 365 Copilot with custom skills, plugins, and connectors to integrate third-party services and enterprise data sources.

Azure OpenAI Service API

Azure OpenAI Service provides REST API access to OpenAI's language models, which power Microsoft 365 Copilot's AI capabilities with enterprise-grade security and compliance.

Agent Skills showing 24 of 31

add-action

AGENT SKILL

add-adaptive-card

AGENT SKILL

add-global-variable

AGENT SKILL

add-knowledge

AGENT SKILL

add-node

AGENT SKILL

add-other-agents

AGENT SKILL

analyze-evals

AGENT SKILL

chat-directline

AGENT SKILL

chat-sdk

AGENT SKILL

chat-with-agent

AGENT SKILL

clone-agent

AGENT SKILL

create-eval-set

AGENT SKILL

create-eval

AGENT SKILL

detect-mode

AGENT SKILL

directline-chat

AGENT SKILL

edit-action

AGENT SKILL

edit-agent

AGENT SKILL

edit-triggers

AGENT SKILL

int-patterns

AGENT SKILL

int-project-context

AGENT SKILL

int-reference

AGENT SKILL

list-kinds

AGENT SKILL

list-topics

AGENT SKILL

Collections

Pricing Plans

Rate Limits

Microsoft 365 Copilot Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🌐
Portal
Portal
🌐
DeveloperPortal
DeveloperPortal
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
💬
Support
Support
📰
Blog
Blog
🟢
StatusPage
StatusPage
👥
GitHubOrganization
GitHubOrganization
🔗
AgentSkills
AgentSkills

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Microsoft 365 Copilot (Microsoft Graph)
  version: '1.0'
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://login.microsoftonline.com/common/oauth2/v2.0/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: User Content
    type: folder
  items:
  - info:
      name: Get the signed-in user's profile (Copilot grounding context)
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me
    docs: Get the signed-in user's profile (Copilot grounding context)
  - info:
      name: List the signed-in user's mail
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/messages
    docs: List the signed-in user's mail
  - info:
      name: List the signed-in user's calendar events
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/events
    docs: List the signed-in user's calendar events
  - info:
      name: List items in the user's OneDrive root
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/drive/root/children
    docs: List items in the user's OneDrive root
- info:
    name: Connectors
    type: folder
  items:
  - info:
      name: List Microsoft 365 Copilot connector connections
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/external/connections
    docs: List Microsoft 365 Copilot connector connections
  - info:
      name: Create a Copilot connector connection
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/external/connections
      body:
        type: json
        data: '{}'
    docs: Create a Copilot connector connection
  - info:
      name: Get a Copilot connector connection
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id
      params:
      - name: connection-id
        value: ''
        type: path
    docs: Get a Copilot connector connection
  - info:
      name: Delete a Copilot connector connection
      type: http
    http:
      method: DELETE
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id
      params:
      - name: connection-id
        value: ''
        type: path
    docs: Delete a Copilot connector connection
  - info:
      name: Get the schema of a connection
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id/schema
      params:
      - name: connection-id
        value: ''
        type: path
    docs: Get the schema of a connection
  - info:
      name: Update the schema of a connection
      type: http
    http:
      method: PATCH
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id/schema
      params:
      - name: connection-id
        value: ''
        type: path
    docs: Update the schema of a connection
- info:
    name: External Items
    type: folder
  items:
  - info:
      name: Create or update an external item
      type: http
    http:
      method: PUT
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id/items/:item-id
      params:
      - name: connection-id
        value: ''
        type: path
      - name: item-id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Create or update an external item
  - info:
      name: Delete an external item
      type: http
    http:
      method: DELETE
      url: https://graph.microsoft.com/v1.0/external/connections/:connection-id/items/:item-id
      params:
      - name: connection-id
        value: ''
        type: path
      - name: item-id
        value: ''
        type: path
    docs: Delete an external item
- info:
    name: Search
    type: folder
  items:
  - info:
      name: Issue a Microsoft Search query (drives Copilot grounding)
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/search/query
      body:
        type: json
        data: '{}'
    docs: Issue a Microsoft Search query (drives Copilot grounding)
bundled: true