ActiveCampaign · Arazzo Workflow

ActiveCampaign Find a Deal by Title and Add a Note

Version 1.0.0

Search deals by title then attach a note to the matched deal.

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

Provider

activecampaign

Workflows

find-deal-add-note
Find a deal by title and attach a note to it.
Searches deals by title and attaches an explanatory note to the first matched deal.
2 steps inputs: apiToken, note, title outputs: dealId
1
findDeal
Search deals by the supplied title.
2
addNote
Attach an explanatory note to the matched deal.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ActiveCampaign Find a Deal by Title and Add a Note
  summary: Search deals by title then attach a note to the matched deal.
  description: >-
    A find-then-annotate flow. The workflow searches deals by title using the
    deal title filter, confirms a match was returned, and attaches an
    explanatory note to the matched deal. 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: find-deal-add-note
  summary: Find a deal by title and attach a note to it.
  description: >-
    Searches deals by title and attaches an explanatory note to the first
    matched deal.
  inputs:
    type: object
    required:
    - apiToken
    - title
    - note
    properties:
      apiToken:
        type: string
        description: ActiveCampaign API token sent in the Api-Token header.
      title:
        type: string
        description: Title used to search for the deal.
      note:
        type: string
        description: Text of the note to attach to the matched deal.
  steps:
  - stepId: findDeal
    description: Search deals by the supplied title.
    operationId: list-all-deals
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: filters[title]
      in: query
      value: $inputs.title
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.deals.length > 0
      type: jsonpath
    outputs:
      dealId: $response.body#/deals/0/id
  - stepId: addNote
    description: Attach an explanatory note to the matched deal.
    operationId: create-a-deal-note
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: id
      in: path
      value: $steps.findDeal.outputs.dealId
    requestBody:
      contentType: application/json
      payload:
        note:
          note: $inputs.note
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dealId: $response.body#/deals/0/id
  outputs:
    dealId: $steps.findDeal.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-find-deal-add-note-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.