Microsoft Power Automate Connections API

Operations for managing connections

Operations 1

GET /providers/Microsoft.ProcessSimple/environments/{environmentName}/connections Microsoft Power Automate List Connections #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Examples
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/examples/power-automate-management-api-flow-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/examples/power-automate-management-api-environment-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/examples/power-automate-management-api-flow-run-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/examples/power-automate-management-api-connector-example.json
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-cancel-running-run-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-connector-dependency-audit-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-environment-inventory-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-flow-callback-url-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-manage-flow-owners-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-provision-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-retire-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-safe-update-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/microsoft-power-automate/refs/heads/main/arazzo/microsoft-power-automate-triage-failed-run-workflow.yml

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-connections-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-connections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Microsoft Power Automate Management Connections 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: Connections
  description: Operations for managing connections
paths:
  /providers/Microsoft.ProcessSimple/environments/{environmentName}/connections:
    get:
      operationId: listConnections
      summary: Microsoft Power Automate List Connections
      description: List all connections available in the given environment.
      tags:
      - Connections
      parameters:
      - name: environmentName
        in: path
        required: true
        description: The name of the environment.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with list of connections.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionList'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ConnectionList:
      type: object
      description: A list of connections.
      properties:
        value:
          type: array
          description: The array of connections.
          items:
            $ref: '#/components/schemas/Connection'
    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.
    Connection:
      type: object
      description: A Power Automate connection.
      properties:
        name:
          type: string
          description: The connection name.
          example: shared-commondataserviceforapps-abc123
        properties:
          type: object
          properties:
            displayName:
              type: string
              description: The display name.
              example: Dataverse Connection
            apiId:
              type: string
              description: The connector ID.
              example: /providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps
            createdTime:
              type: string
              format: date-time
              description: Creation time.
              example: '2025-06-15T08:00:00Z'
            lastModifiedTime:
              type: string
              format: date-time
              description: Last modification time.
              example: '2026-04-10T14:30:00Z'
  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