Microsoft Active Directory website screenshot

Microsoft Active Directory

Microsoft Active Directory (AD) is a directory service developed by Microsoft for Windows domain networks. It provides authentication and authorization services, centralized domain management, and directory services.

4 APIs 0 Features
AuthenticationAuthorizationDirectory ServicesEnterpriseIdentityLdapWindows

APIs

Microsoft Graph API (Azure AD)

REST API for accessing Azure Active Directory resources including users, groups, applications, and directory data.

LDAP Protocol Interface

Lightweight Directory Access Protocol interface for querying and modifying Active Directory.

PowerShell Active Directory Module

PowerShell cmdlets for managing Active Directory Domain Services.

Azure AD Graph API (Deprecated)

Legacy REST API for Azure Active Directory (being replaced by Microsoft Graph).

Collections

Pricing Plans

Rate Limits

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🟢
Service Status
Service Status
📰
Blog
Blog
💬
Support
Support

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Microsoft Active Directory (via 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: Users
    type: folder
  items:
  - info:
      name: List users in the directory
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/users
      params:
      - name: $filter
        value: ''
        type: query
      - name: $select
        value: ''
        type: query
    docs: List users in the directory
  - info:
      name: Create a user
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/users
    docs: Create a user
  - info:
      name: Get a user
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a user
  - info:
      name: Update a user
      type: http
    http:
      method: PATCH
      url: https://graph.microsoft.com/v1.0/users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Update a user
  - info:
      name: Delete a user
      type: http
    http:
      method: DELETE
      url: https://graph.microsoft.com/v1.0/users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a user
  - info:
      name: List groups and directory roles the user is a member of
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/users/:id/memberOf
      params:
      - name: id
        value: ''
        type: path
    docs: List groups and directory roles the user is a member of
- info:
    name: Groups
    type: folder
  items:
  - info:
      name: List groups
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups
    docs: List groups
  - info:
      name: Create a group
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/groups
    docs: Create a group
  - info:
      name: Get a group
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a group
  - info:
      name: Update a group
      type: http
    http:
      method: PATCH
      url: https://graph.microsoft.com/v1.0/groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Update a group
  - info:
      name: Delete a group
      type: http
    http:
      method: DELETE
      url: https://graph.microsoft.com/v1.0/groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a group
  - info:
      name: List members of a group
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups/:id/members
      params:
      - name: id
        value: ''
        type: path
    docs: List members of a group
  - info:
      name: Add a member to a group
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/groups/:id/members/$ref
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Add a member to a group
- info:
    name: Applications
    type: folder
  items:
  - info:
      name: List application registrations
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/applications
    docs: List application registrations
  - info:
      name: Create an application registration
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/applications
    docs: Create an application registration
  - info:
      name: Get an application
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/applications/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get an application
  - info:
      name: Delete an application
      type: http
    http:
      method: DELETE
      url: https://graph.microsoft.com/v1.0/applications/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete an application
- info:
    name: Service Principals
    type: folder
  items:
  - info:
      name: List service principals
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/servicePrincipals
    docs: List service principals
  - info:
      name: Create a service principal
      type: http
    http:
      method: POST
      url: https://graph.microsoft.com/v1.0/servicePrincipals
    docs: Create a service principal
  - info:
      name: Get a service principal
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/servicePrincipals/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a service principal
- info:
    name: Directory Roles
    type: folder
  items:
  - info:
      name: List activated directory roles in the tenant
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/directoryRoles
    docs: List activated directory roles in the tenant
  - info:
      name: List members of a directory role
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/directoryRoles/:id/members
      params:
      - name: id
        value: ''
        type: path
    docs: List members of a directory role
bundled: true