Mailchimp · Arazzo Workflow

Mailchimp Pre-Send Checklist then Send Campaign

Version 1.0.0

Run the send checklist for a campaign and only send if it is ready.

1 workflow 1 source API 1 provider
View Spec View on GitHub CampaignsEmail MarketingMarketing AutomationNewslettersTransactional EmailAudience ManagementSMSE-CommerceWebhookMarketing AnalyticsArazzoWorkflows

Provider

mailchimp

Workflows

checklist-then-send-campaign
Send a campaign only when its send checklist reports ready.
Fetches the campaign send checklist and sends the campaign only if is_ready is true; otherwise it ends without sending.
2 steps inputs: campaignId outputs: isReady
1
getChecklist
Retrieve the send checklist for the campaign to determine whether it is ready to send.
2
sendCampaign
Send the campaign now that the checklist reports it is ready. Returns a 204 empty response on success.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Mailchimp Pre-Send Checklist then Send Campaign
  summary: Run the send checklist for a campaign and only send if it is ready.
  description: >-
    A guarded send. The workflow pulls the campaign's send checklist and
    branches on the is_ready flag: when the campaign passes all checks it
    triggers the send action, and when it does not it ends without sending so a
    half-configured campaign is never delivered. This is the safe wrapper around
    the otherwise irreversible send call. Authentication uses HTTP Basic auth
    with any username and your Mailchimp API key as the password.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-400.60
  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-400.60
      capability_name: Digital Marketing Management
      spec: mailchimp-campaigns-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: campaignsApi
  url: ../openapi/mailchimp-campaigns-api-openapi.yml
  type: openapi
workflows:
- workflowId: checklist-then-send-campaign
  summary: Send a campaign only when its send checklist reports ready.
  description: >-
    Fetches the campaign send checklist and sends the campaign only if is_ready
    is true; otherwise it ends without sending.
  inputs:
    type: object
    required:
    - campaignId
    properties:
      campaignId:
        type: string
        description: The unique id for the campaign to check and send.
  steps:
  - stepId: getChecklist
    description: >-
      Retrieve the send checklist for the campaign to determine whether it is
      ready to send.
    operationId: getCampaignsIdSendChecklist
    parameters:
    - name: campaign_id
      in: path
      value: $inputs.campaignId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      isReady: $response.body#/is_ready
    onSuccess:
    - name: ready
      type: goto
      stepId: sendCampaign
      criteria:
      - context: $response.body
        condition: $.is_ready == true
        type: jsonpath
    - name: notReady
      type: end
      criteria:
      - context: $response.body
        condition: $.is_ready == false
        type: jsonpath
  - stepId: sendCampaign
    description: >-
      Send the campaign now that the checklist reports it is ready. Returns a 204
      empty response on success.
    operationId: postCampaignsIdActionsSend
    parameters:
    - name: campaign_id
      in: path
      value: $inputs.campaignId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    isReady: $steps.getChecklist.outputs.isReady

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/mailchimp-checklist-then-send-campaign-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.