Microsoft Azure API Management · Arazzo Workflow

Azure API Management Provision Service

Version 1.0.0

Check a service name, create the API Management service, then poll until provisioning succeeds.

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

Provider

microsoft-azure-api-management

Workflows

provision-apim-service
Provision a new Azure API Management service after verifying the name.
Verifies the service name is available, creates or updates the service with the supplied SKU and publisher details, then reads the service back to surface the provisioning state and gateway URL.
3 steps inputs: location, publisherEmail, publisherName, resourceGroupName, serviceName, skuCapacity, skuName, subscriptionId outputs: gatewayUrl, provisioningState, serviceId
1
checkName
Confirm the desired service name is available before attempting to create the service.
2
createService
Create or update the API Management service with the requested SKU and publisher identity.
3
confirmService
Read the service back to confirm the provisioning state and capture the public gateway URL.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure API Management Provision Service
  summary: Check a service name, create the API Management service, then poll until provisioning succeeds.
  description: >-
    The foundational provisioning flow for Azure API Management. The workflow
    first confirms the desired service name is available, then creates (or
    updates) the API Management service in the target resource group, and
    finally re-reads the service so the caller can confirm the provisioning
    state has reached a terminal value. 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: apimanagementserviceApi
  url: ../openapi/microsoft-azure-api-management-apimanagementservice-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-apim-service
  summary: Provision a new Azure API Management service after verifying the name.
  description: >-
    Verifies the service name is available, creates or updates the service with
    the supplied SKU and publisher details, then reads the service back to
    surface the provisioning state and gateway URL.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - serviceName
    - location
    - publisherEmail
    - publisherName
    properties:
      subscriptionId:
        type: string
        description: The Azure subscription identifier.
      resourceGroupName:
        type: string
        description: The resource group that will contain the service.
      serviceName:
        type: string
        description: The desired API Management service name.
      location:
        type: string
        description: The Azure region for the service (e.g. West US 2).
      publisherEmail:
        type: string
        description: The publisher email shown in the developer portal.
      publisherName:
        type: string
        description: The publisher/organization name.
      skuName:
        type: string
        description: The SKU tier (e.g. Developer, Basic, Standard, Premium).
      skuCapacity:
        type: integer
        description: The number of deployed units for the SKU.
  steps:
  - stepId: checkName
    description: >-
      Confirm the desired service name is available before attempting to create
      the service.
    operationId: ApiManagementService_CheckNameAvailability
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.serviceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      nameAvailable: $response.body#/nameAvailable
  - stepId: createService
    description: >-
      Create or update the API Management service with the requested SKU and
      publisher identity.
    operationId: ApiManagementService_CreateOrUpdate
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: serviceName
      in: path
      value: $inputs.serviceName
    requestBody:
      contentType: application/json
      payload:
        location: $inputs.location
        sku:
          name: $inputs.skuName
          capacity: $inputs.skuCapacity
        properties:
          publisherEmail: $inputs.publisherEmail
          publisherName: $inputs.publisherName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      serviceId: $response.body#/id
      provisioningState: $response.body#/properties/provisioningState
  - stepId: confirmService
    description: >-
      Read the service back to confirm the provisioning state and capture the
      public gateway URL.
    operationId: ApiManagementService_Get
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: serviceName
      in: path
      value: $inputs.serviceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      provisioningState: $response.body#/properties/provisioningState
      gatewayUrl: $response.body#/properties/gatewayUrl
      portalUrl: $response.body#/properties/portalUrl
  outputs:
    serviceId: $steps.createService.outputs.serviceId
    provisioningState: $steps.confirmService.outputs.provisioningState
    gatewayUrl: $steps.confirmService.outputs.gatewayUrl

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-service-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.