Appmixer · Arazzo Workflow

Appmixer Clone an Existing Flow

Version 1.0.0

Read an existing flow's definition and create a copy of it under a new name.

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

Provider

appmixer

Workflows

clone-flow
Duplicate an existing flow into a new flow.
Fetches the source flow's definition and custom fields and posts them as a brand new flow under the supplied name.
2 steps inputs: newName, sourceFlowId, token outputs: cloneFlowId
1
getSourceFlow
getFlow
Read the source flow to capture its definition and metadata.
2
createClone
createFlow
Create a new flow reusing the source definition under a new name.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Appmixer Clone an Existing Flow
  summary: Read an existing flow's definition and create a copy of it under a new name.
  description: >-
    A duplication pattern for the Appmixer iPaaS. The workflow reads an existing
    flow to capture its definition and custom fields, then creates a new flow
    that reuses that definition under a new name. The result is an independent
    copy that can be edited and started without touching the original.
  version: 1.0.0
sourceDescriptions:
- name: appmixerApi
  url: ../openapi/appmixer-api-openapi.yml
  type: openapi
workflows:
- workflowId: clone-flow
  summary: Duplicate an existing flow into a new flow.
  description: >-
    Fetches the source flow's definition and custom fields and posts them as a
    brand new flow under the supplied name.
  inputs:
    type: object
    required:
    - token
    - sourceFlowId
    - newName
    properties:
      token:
        type: string
        description: Appmixer access token obtained from /user/auth.
      sourceFlowId:
        type: string
        description: The identifier of the flow to clone.
      newName:
        type: string
        description: Name for the newly created clone.
  steps:
  - stepId: getSourceFlow
    description: Read the source flow to capture its definition and metadata.
    operationId: getFlow
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: flowId
      in: path
      value: $inputs.sourceFlowId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      flowDefinition: $response.body#/flow
      customFields: $response.body#/customFields
  - stepId: createClone
    description: Create a new flow reusing the source definition under a new name.
    operationId: createFlow
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.newName
        flow: $steps.getSourceFlow.outputs.flowDefinition
        customFields: $steps.getSourceFlow.outputs.customFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      cloneFlowId: $response.body#/id
      stage: $response.body#/stage
  outputs:
    cloneFlowId: $steps.createClone.outputs.cloneFlowId

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-clone-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 email required.

A second provider on the same verified email joins the account you already have.