ActiveCampaign · Arazzo Workflow

ActiveCampaign Create Pipeline, Stage, and First Deal

Version 1.0.0

Stand up a pipeline, add a stage to it, then open the first deal.

1 workflow 1 source API 1 provider
View Spec View on GitHub Marketing AutomationEmail MarketingCRMSales AutomationCustomer ExperienceSMS MarketingE-CommerceSegmentationWebhookArazzoWorkflows

Provider

activecampaign

Workflows

create-pipeline-stage-deal
Create a pipeline, add a stage, then open the first deal.
Creates a pipeline, adds a stage to it, and opens an initial deal into the new stage for the supplied contact.
3 steps inputs: apiToken, contactId, currency, dealTitle, ownerId, pipelineTitle, stageTitle, value outputs: dealId, pipelineId, stageId
1
createPipeline
Create the pipeline with the supplied title and currency.
2
createStage
Add a stage to the newly created pipeline.
3
openDeal
Open the first deal into the new stage of the new pipeline.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ActiveCampaign Create Pipeline, Stage, and First Deal
  summary: Stand up a pipeline, add a stage to it, then open the first deal.
  description: >-
    A pipeline bootstrapping flow. A new pipeline is created, a stage is added
    inside that pipeline, and an initial deal is opened into the new stage.
    Every step spells out its request inline, including the Api-Token
    authentication header, so the flow can be read and executed without opening
    the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: dealsApi
  url: ../openapi/activecampaign-deals-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-pipeline-stage-deal
  summary: Create a pipeline, add a stage, then open the first deal.
  description: >-
    Creates a pipeline, adds a stage to it, and opens an initial deal into the
    new stage for the supplied contact.
  inputs:
    type: object
    required:
    - apiToken
    - pipelineTitle
    - currency
    - stageTitle
    - dealTitle
    - contactId
    - value
    - ownerId
    properties:
      apiToken:
        type: string
        description: ActiveCampaign API token sent in the Api-Token header.
      pipelineTitle:
        type: string
        description: Title of the pipeline to create.
      currency:
        type: string
        description: Three-letter lowercase currency code for the pipeline and deal.
      stageTitle:
        type: string
        description: Title of the stage to add to the pipeline.
      dealTitle:
        type: string
        description: Title of the first deal.
      contactId:
        type: string
        description: Identifier of the primary contact on the deal.
      value:
        type: integer
        description: Deal value in cents.
      ownerId:
        type: string
        description: Identifier of the user who owns the deal.
  steps:
  - stepId: createPipeline
    description: Create the pipeline with the supplied title and currency.
    operationId: create-a-pipeline
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        dealGroup:
          title: $inputs.pipelineTitle
          currency: $inputs.currency
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineId: $response.body#/dealGroup/id
  - stepId: createStage
    description: Add a stage to the newly created pipeline.
    operationId: create-a-deal-stage
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        dealStage:
          title: $inputs.stageTitle
          group: $steps.createPipeline.outputs.pipelineId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      stageId: $response.body#/dealStage/id
  - stepId: openDeal
    description: Open the first deal into the new stage of the new pipeline.
    operationId: create-a-deal-new
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        deal:
          title: $inputs.dealTitle
          contact: $inputs.contactId
          value: $inputs.value
          currency: $inputs.currency
          group: $steps.createPipeline.outputs.pipelineId
          stage: $steps.createStage.outputs.stageId
          owner: $inputs.ownerId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dealId: $response.body#/deal/id
  outputs:
    pipelineId: $steps.createPipeline.outputs.pipelineId
    stageId: $steps.createStage.outputs.stageId
    dealId: $steps.openDeal.outputs.dealId

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/activecampaign-create-pipeline-stage-deal-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.