microsoft-azure-communication-services Identity API

The Identity API from microsoft-azure-communication-services — 3 operation(s) for identity.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/microsoft-azure-communication-services-identity-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

microsoft-azure-communication-services-identity-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Azure Communication Services REST Email Identity API
  description: Azure Communication Services REST APIs provide messaging, telephony, identity, chat, and email capabilities. Authentication uses HMAC SHA256 or Azure AD tokens.
  version: '2024-08-01'
servers:
- url: https://{resource}.communication.azure.com
  variables:
    resource:
      default: myresource
security:
- hmac: []
tags:
- name: Identity
paths:
  /identities:
    post:
      operationId: createIdentity
      summary: ACS Create identity
      description: Creates a new communication user identity.
      tags:
      - Identity
      parameters:
      - name: api-version
        in: query
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Identity created
          content:
            application/json:
              schema:
                type: object
                properties:
                  identity:
                    type: object
                    properties:
                      id:
                        type: string
  /identities/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    - name: api-version
      in: query
      required: true
      schema:
        type: string
    delete:
      operationId: deleteIdentity
      summary: ACS Delete identity
      description: Deletes a communication user identity.
      tags:
      - Identity
      responses:
        '204':
          description: Identity deleted
  /identities/{id}/:issueAccessToken:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    - name: api-version
      in: query
      required: true
      schema:
        type: string
    post:
      operationId: issueAccessToken
      summary: ACS Issue access token
      description: Issues a scoped access token for an identity.
      tags:
      - Identity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                scopes:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Token issued
          content:
            application/json:
              schema:
                type: object
                properties:
                  token:
                    type: string
                  expiresOn:
                    type: string
components:
  securitySchemes:
    hmac:
      type: apiKey
      in: header
      name: Authorization
      description: HMAC-SHA256 signed Authorization header
externalDocs:
  description: Azure Communication Services REST API Documentation
  url: https://learn.microsoft.com/en-us/rest/api/communication/
x-generated-from: https://learn.microsoft.com/en-us/rest/api/communication/
x-generated-by: claude-crawl-2026-05-08