Microsoft Azure Quantum · Arazzo Workflow

Azure Quantum Workspace Bootstrap

Version 1.0.0

Read a workspace, branch on provisioning state, list its keys, and list provider offerings.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub QuantumQuantum ComputingAzureMicrosoftQ#QDKResource EstimationIonQQuantinuumPasqalRigettiHybrid QuantumFault ToleranceArazzoWorkflows

Provider

microsoft-quantum

Workflows

workspace-bootstrap
Confirm a workspace is provisioned, fetch its keys, and list regional offerings.
Reads the Quantum workspace and inspects its provisioning state. When the workspace provisioning has Succeeded the workflow lists its access keys and the provider offerings available in the workspace location; otherwise it reports the non-terminal provisioning state.
4 steps inputs: apiVersion, authToken, locationName, resourceGroupName, subscriptionId, workspaceName outputs: endpointUri, offerings, pendingProvisioningState, primaryConnectionString, provisioningState
1
getWorkspace
Read the Quantum workspace to confirm it exists and inspect its provisioning state and endpoint.
2
listKeys
Retrieve the workspace access keys and connection strings for client configuration.
3
listOfferings
List the provider offerings available in the workspace region for onboarding decisions.
4
reportNotReady
The workspace is not in a Succeeded provisioning state; re-read it to surface the current provisioning state for the caller.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure Quantum Workspace Bootstrap
  summary: Read a workspace, branch on provisioning state, list its keys, and list provider offerings.
  description: >-
    Onboarding a client against an Azure Quantum workspace starts with confirming
    the workspace is provisioned, retrieving its access keys, and discovering the
    provider offerings available in its region. This workflow reads the workspace
    with Workspaces_Get, branches on provisioningState, lists keys with
    Workspaces_ListKeys when the workspace is Succeeded, and enumerates regional
    offerings with Offerings_List. Each step spells out its request inline,
    including the inline Authorization bearer token and the required api-version
    query parameter.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-600.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: microsoft-quantum-workspaces-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: offeringsApi
  url: ../openapi/microsoft-quantum-offerings-api-openapi.yml
  type: openapi
- name: workspacesApi
  url: ../openapi/microsoft-quantum-workspaces-api-openapi.yml
  type: openapi
workflows:
- workflowId: workspace-bootstrap
  summary: Confirm a workspace is provisioned, fetch its keys, and list regional offerings.
  description: >-
    Reads the Quantum workspace and inspects its provisioning state. When the
    workspace provisioning has Succeeded the workflow lists its access keys and
    the provider offerings available in the workspace location; otherwise it
    reports the non-terminal provisioning state.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - workspaceName
    - locationName
    - apiVersion
    - authToken
    properties:
      subscriptionId:
        type: string
        description: The Azure subscription identifier that owns the workspace.
      resourceGroupName:
        type: string
        description: The resource group containing the Quantum workspace.
      workspaceName:
        type: string
        description: The name of the Azure Quantum workspace.
      locationName:
        type: string
        description: The Azure region used to list offerings, e.g. eastus.
      apiVersion:
        type: string
        description: The resource-manager api-version, e.g. 2025-12-15-preview.
      authToken:
        type: string
        description: The Azure AD bearer token (without the "Bearer " prefix).
  steps:
  - stepId: getWorkspace
    description: >-
      Read the Quantum workspace to confirm it exists and inspect its
      provisioning state and endpoint.
    operationId: Workspaces_Get
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.authToken"
    - name: api-version
      in: query
      value: $inputs.apiVersion
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      provisioningState: $response.body#/properties/provisioningState
      endpointUri: $response.body#/properties/endpointUri
      apiKeyEnabled: $response.body#/properties/apiKeyEnabled
    onSuccess:
    - name: provisioned
      type: goto
      stepId: listKeys
      criteria:
      - context: $response.body
        condition: $.properties.provisioningState == "Succeeded"
        type: jsonpath
    - name: notProvisioned
      type: goto
      stepId: reportNotReady
      criteria:
      - context: $response.body
        condition: $.properties.provisioningState != "Succeeded"
        type: jsonpath
  - stepId: listKeys
    description: >-
      Retrieve the workspace access keys and connection strings for client
      configuration.
    operationId: Workspaces_ListKeys
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.authToken"
    - name: api-version
      in: query
      value: $inputs.apiVersion
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiKeyEnabled: $response.body#/apiKeyEnabled
      primaryConnectionString: $response.body#/primaryConnectionString
  - stepId: listOfferings
    description: >-
      List the provider offerings available in the workspace region for
      onboarding decisions.
    operationId: Offerings_List
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.authToken"
    - name: api-version
      in: query
      value: $inputs.apiVersion
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: locationName
      in: path
      value: $inputs.locationName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      offerings: $response.body#/value
      firstOfferingId: $response.body#/value/0/id
    onSuccess:
    - name: done
      type: end
  - stepId: reportNotReady
    description: >-
      The workspace is not in a Succeeded provisioning state; re-read it to
      surface the current provisioning state for the caller.
    operationId: Workspaces_Get
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.authToken"
    - name: api-version
      in: query
      value: $inputs.apiVersion
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pendingProvisioningState: $response.body#/properties/provisioningState
  outputs:
    provisioningState: $steps.getWorkspace.outputs.provisioningState
    endpointUri: $steps.getWorkspace.outputs.endpointUri
    primaryConnectionString: $steps.listKeys.outputs.primaryConnectionString
    offerings: $steps.listOfferings.outputs.offerings
    pendingProvisioningState: $steps.reportNotReady.outputs.pendingProvisioningState

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-quantum-workspace-bootstrap-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.