Microsoft Azure API Management · Arazzo Workflow

Azure API Management Provision Workspace API

Version 1.0.0

Create a workspace, register an API inside it, then read the workspace API back.

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

Provider

microsoft-azure-api-management

Workflows

provision-workspace-api
Create a workspace and register an API inside it.
Creates or updates a workspace, registers a workspace-scoped API, then reads the API back to confirm.
3 steps inputs: apiId, displayName, path, resourceGroupName, serviceName, serviceUrl, subscriptionId, workspaceId, workspaceName outputs: apiResourceId, workspaceResourceId
1
createWorkspace
Create or update the workspace that will contain the API.
2
createWorkspaceApi
Create the API scoped to the workspace with a display name, path, and backend URL.
3
confirmWorkspaceApi
Read the workspace API back to confirm it was registered.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure API Management Provision Workspace API
  summary: Create a workspace, register an API inside it, then read the workspace API back.
  description: >-
    Carves out an isolated workspace for a team and publishes an API inside it.
    The workflow creates or updates the workspace, creates an API scoped to that
    workspace with a display name, path, and backend URL, then reads the
    workspace API back to confirm it was registered. 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: apiApi
  url: ../openapi/microsoft-azure-api-management-api-api-openapi.yml
  type: openapi
- name: workspaceApi
  url: ../openapi/microsoft-azure-api-management-workspace-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-workspace-api
  summary: Create a workspace and register an API inside it.
  description: >-
    Creates or updates a workspace, registers a workspace-scoped API, then reads
    the API back to confirm.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - serviceName
    - workspaceId
    - apiId
    - displayName
    - path
    - serviceUrl
    properties:
      subscriptionId:
        type: string
        description: The Azure subscription identifier.
      resourceGroupName:
        type: string
        description: The resource group containing the service.
      serviceName:
        type: string
        description: The API Management service name.
      workspaceId:
        type: string
        description: The workspace identifier to create.
      workspaceName:
        type: string
        description: The workspace display name.
      apiId:
        type: string
        description: The API identifier to register in the workspace.
      displayName:
        type: string
        description: The API display name.
      path:
        type: string
        description: The API URL suffix/path.
      serviceUrl:
        type: string
        description: The backend service URL.
  steps:
  - stepId: createWorkspace
    description: >-
      Create or update the workspace that will contain the API.
    operationId: Workspace_CreateOrUpdate
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: serviceName
      in: path
      value: $inputs.serviceName
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    requestBody:
      contentType: application/json
      payload:
        properties:
          displayName: $inputs.workspaceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceResourceId: $response.body#/id
  - stepId: createWorkspaceApi
    description: >-
      Create the API scoped to the workspace with a display name, path, and
      backend URL.
    operationId: WorkspaceApi_CreateOrUpdate
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: serviceName
      in: path
      value: $inputs.serviceName
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: apiId
      in: path
      value: $inputs.apiId
    requestBody:
      contentType: application/json
      payload:
        properties:
          displayName: $inputs.displayName
          serviceUrl: $inputs.serviceUrl
          path: $inputs.path
          protocols:
          - https
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiResourceId: $response.body#/id
  - stepId: confirmWorkspaceApi
    description: >-
      Read the workspace API back to confirm it was registered.
    operationId: WorkspaceApi_Get
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: serviceName
      in: path
      value: $inputs.serviceName
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: apiId
      in: path
      value: $inputs.apiId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiResourceId: $response.body#/id
  outputs:
    workspaceResourceId: $steps.createWorkspace.outputs.workspaceResourceId
    apiResourceId: $steps.createWorkspaceApi.outputs.apiResourceId

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-provision-workspace-api-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.