Microsoft Applications APIs website screenshot

Microsoft Applications APIs

Collection of Microsoft application APIs for productivity, collaboration, and enterprise services.

8 APIs 0 Features
CloudEnterpriseMicrosoftMicrosoft-365OfficeProductivitySaas

APIs

Microsoft Graph API

Unified API endpoint for accessing Microsoft 365 services including users, mail, calendar, contacts, files, and more.

Microsoft Teams API

API for building apps and bots that integrate with Microsoft Teams.

Outlook Mail API

API for accessing and managing email messages through Microsoft Outlook.

OneDrive API

API for accessing and managing files stored in OneDrive and SharePoint.

SharePoint API

API for accessing SharePoint sites, lists, and content.

Azure Active Directory API

API for identity and access management in Azure AD.

Microsoft To Do API

API for managing tasks and to-do lists.

Microsoft Planner API

API for creating and managing plans, tasks, and team collaboration.

Collections

Pricing Plans

Rate Limits

Ms Applications Rate Limits

5 limits

RATE LIMITS

FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Microsoft Graph API (Applications)
  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: Get the signed-in user profile
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me
  docs: Get the signed-in user profile
- info:
    name: List the signed-in user's mail messages
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/messages
    params:
    - name: $filter
      value: ''
      type: query
    - name: $top
      value: ''
      type: query
    - name: $select
      value: ''
      type: query
  docs: List the signed-in user's mail messages
- 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 root of the user's drive
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/drive/root/children
  docs: List items in the root of the user's drive
- info:
    name: Get the signed-in user's manager
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/manager
  docs: Get the signed-in user's manager
- info:
    name: List people related to the signed-in user
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/people
  docs: List people related to the signed-in user
- info:
    name: List directory objects the user is a member of
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/memberOf
  docs: List directory objects the user is a member of
- info:
    name: Get the signed-in user's profile photo binary
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/me/photo/$value
  docs: Get the signed-in user's profile photo binary
- info:
    name: List users in the organization
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/users
    params:
    - name: $filter
      value: ''
      type: query
    - name: $top
      value: ''
      type: query
  docs: List users in the organization
- info:
    name: Get a user by id or userPrincipalName
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/users/:user-id
    params:
    - name: user-id
      value: ''
      type: path
  docs: Get a user by id or userPrincipalName
- info:
    name: List groups in the organization
    type: http
  http:
    method: GET
    url: https://graph.microsoft.com/v1.0/groups
  docs: List groups in the organization
bundled: true