Appmixer · Arazzo Workflow

Appmixer Decommission a Flow

Version 1.0.0

Read a flow, stop it if it is running, then delete it.

1 workflow 1 source API 1 provider
View Spec View on GitHub AgenticAutomationEmbedded iPaaSIntegrationLow-CodeWorkflowsArazzoWorkflows

Provider

appmixer

Workflows

decommission-flow
Stop a running flow if necessary and then delete it.
Fetches the flow, branches on its running stage to stop it when live, and deletes the flow in both branches.
3 steps inputs: flowId, token outputs: deletedFlowId
1
getFlow
Read the flow to determine whether it is currently running.
2
stopFlow
Stop the running flow before deleting it.
3
deleteFlow
Delete the flow now that it is stopped.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Appmixer Decommission a Flow
  summary: Read a flow, stop it if it is running, then delete it.
  description: >-
    A safe teardown pattern for retiring an Appmixer flow. The workflow reads
    the flow to learn its stage, stops it first when it is still running so no
    in-flight executions are orphaned, and then deletes the flow. A stopped
    flow skips straight to deletion.
  version: 1.0.0
sourceDescriptions:
- name: flowsApi
  url: ../openapi/appmixer-flows-api-openapi.yml
  type: openapi
workflows:
- workflowId: decommission-flow
  summary: Stop a running flow if necessary and then delete it.
  description: >-
    Fetches the flow, branches on its running stage to stop it when live, and
    deletes the flow in both branches.
  inputs:
    type: object
    required:
    - token
    - flowId
    properties:
      token:
        type: string
        description: Appmixer access token obtained from /user/auth.
      flowId:
        type: string
        description: The identifier of the flow to decommission.
  steps:
  - stepId: getFlow
    description: Read the flow to determine whether it is currently running.
    operationId: getFlow
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: flowId
      in: path
      value: $inputs.flowId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      stage: $response.body#/stage
    onSuccess:
    - name: flowRunning
      type: goto
      stepId: stopFlow
      criteria:
      - context: $response.body
        condition: $.stage == "running"
        type: jsonpath
    - name: flowStopped
      type: goto
      stepId: deleteFlow
      criteria:
      - context: $response.body
        condition: $.stage != "running"
        type: jsonpath
  - stepId: stopFlow
    description: Stop the running flow before deleting it.
    operationId: stopFlow
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: flowId
      in: path
      value: $inputs.flowId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: deleteFlow
    description: Delete the flow now that it is stopped.
    operationId: deleteFlow
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: flowId
      in: path
      value: $inputs.flowId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deletedFlowId: $inputs.flowId
  outputs:
    deletedFlowId: $steps.deleteFlow.outputs.deletedFlowId

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/appmixer-stop-and-delete-flow-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.