Microsoft Power Automate Connectors API

Operations for managing connectors

Operations 2

GET /providers/Microsoft.ProcessSimple/environments/{environmentName}/apis Microsoft Power Automate List Connectors #
GET /providers/Microsoft.ProcessSimple/environments/{environmentName}/apis/{apiName} Microsoft Power Automate Get Connector #

Documentation

Specifications

Schemas & Data

Other Resources

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-power-automate-connectors-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

microsoft-power-automate-connectors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Microsoft Power Automate Management Connections Connectors API
  description: The Power Automate Management API enables interaction with the Power Automate Management service for creating, editing, updating, and managing flows, environments, connections, and connectors programmatically.
  version: v1
  contact:
    name: Microsoft
    url: https://powerautomate.microsoft.com
  license:
    name: Microsoft API Terms
    url: https://www.microsoft.com/en-us/servicesagreement
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://api.flow.microsoft.com
  description: Power Automate Management API server
security:
- oauth2: []
tags:
- name: Connectors
  description: Operations for managing connectors
paths:
  /providers/Microsoft.ProcessSimple/environments/{environmentName}/apis:
    get:
      operationId: listConnectors
      summary: Microsoft Power Automate List Connectors
      description: List all connectors available in the given environment including custom and built-in connectors.
      tags:
      - Connectors
      parameters:
      - name: environmentName
        in: path
        required: true
        description: The name of the environment.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with list of connectors.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorList'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /providers/Microsoft.ProcessSimple/environments/{environmentName}/apis/{apiName}:
    get:
      operationId: getConnector
      summary: Microsoft Power Automate Get Connector
      description: Get the details of a specific connector in an environment.
      tags:
      - Connectors
      parameters:
      - name: environmentName
        in: path
        required: true
        description: The name of the environment.
        schema:
          type: string
      - name: apiName
        in: path
        required: true
        description: The name of the connector.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with connector details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Connector'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Connector not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Connector:
      type: object
      description: A Power Automate connector.
      properties:
        name:
          type: string
          description: The connector name.
          example: shared_commondataserviceforapps
        properties:
          type: object
          properties:
            displayName:
              type: string
              description: The display name of the connector.
              example: Microsoft Dataverse
            iconUri:
              type: string
              description: The icon URI.
              example: https://connectoricons-prod.azureedge.net/...
            isCustomApi:
              type: boolean
              description: Whether this is a custom API.
              example: false
            tier:
              type: string
              description: The tier of the connector.
              example: Standard
    Error:
      type: object
      description: An error response from the API.
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: The error code.
              example: FlowNotFound
            message:
              type: string
              description: A human-readable error message.
              example: The specified flow was not found.
    ConnectorList:
      type: object
      description: A list of connectors.
      properties:
        value:
          type: array
          description: The array of connectors.
          items:
            $ref: '#/components/schemas/Connector'
  securitySchemes:
    oauth2:
      type: oauth2
      description: Microsoft Entra ID (Azure AD) OAuth 2.0 authentication.
      flows:
        authorizationCode:
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
          tokenUrl: https://login.microsoftonline.com/common/oauth2/token
          scopes:
            https://service.flow.microsoft.com/.default: Access Power Automate Management API