Microsoft Azure API Management · Arazzo Workflow

Azure API Management Developer Portal Discover and Invoke

Version 1.0.0

Browse the developer portal APIs, read one API's details, then call it through the gateway.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft AzureArazzoWorkflows

Provider

microsoft-azure-api-management

Workflows

devportal-discover-and-invoke
Discover an API on the portal and invoke it through the gateway.
Lists portal APIs, reads one API's details, then makes a proxied GET call to a path on that API through the gateway.
3 steps inputs: apiId, apiPath outputs: apiName, backendStatusCode
1
listPortalApis
List the APIs published on the developer portal to discover what is available.
2
getPortalApi
Read the chosen API's details and documentation from the portal.
3
invokeThroughGateway
Issue a proxied GET request through the gateway to invoke a path on the discovered API.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure API Management Developer Portal Discover and Invoke
  summary: Browse the developer portal APIs, read one API's details, then call it through the gateway.
  description: >-
    Models the consumer journey from discovery to first call. The workflow lists
    the APIs published on the developer portal, reads the details of a chosen
    API, then issues a proxied GET request through the gateway to invoke a path
    on that API. It spans the developer portal and gateway descriptions. Every
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: apisApi
  url: ../openapi/microsoft-azure-api-management-apis-api-openapi.yml
  type: openapi
- name: gatewayApi
  url: ../openapi/microsoft-azure-api-management-gateway-api-openapi.yml
  type: openapi
workflows:
- workflowId: devportal-discover-and-invoke
  summary: Discover an API on the portal and invoke it through the gateway.
  description: >-
    Lists portal APIs, reads one API's details, then makes a proxied GET call to
    a path on that API through the gateway.
  inputs:
    type: object
    required:
    - apiId
    - apiPath
    properties:
      apiId:
        type: string
        description: The developer portal API identifier to inspect.
      apiPath:
        type: string
        description: The gateway path to invoke (e.g. petstore/v1/pets).
  steps:
  - stepId: listPortalApis
    description: >-
      List the APIs published on the developer portal to discover what is
      available.
    operationId: DevPortal_ListApis
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiCount: $response.body#/count
  - stepId: getPortalApi
    description: >-
      Read the chosen API's details and documentation from the portal.
    operationId: DevPortal_GetApi
    parameters:
    - name: api-id
      in: path
      value: $inputs.apiId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiName: $response.body#/name
      serviceUrl: $response.body#/serviceUrl
  - stepId: invokeThroughGateway
    description: >-
      Issue a proxied GET request through the gateway to invoke a path on the
      discovered API.
    operationId: Gateway_ProxyGet
    parameters:
    - name: api-path
      in: path
      value: $inputs.apiPath
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      backendStatusCode: $response.body#/statusCode
  outputs:
    apiName: $steps.getPortalApi.outputs.apiName
    backendStatusCode: $steps.invokeThroughGateway.outputs.backendStatusCode

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/microsoft-azure-api-management-devportal-discover-and-invoke-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.