Omnisend · Arazzo Workflow

Omnisend Copy and Send Campaign

Version 1.0.0

Copy an existing campaign, read the copy to confirm, then queue it for sending.

1 workflow 1 source API 1 provider
View Spec View on GitHub Email MarketingMarketing AutomationE-CommerceSMS MarketingCustomer EngagementSegmentationCampaignsFormsPopupsWeb PushAutomation WorkflowsAnalyticsMCPAgent ReadyTransactional MessagingArazzoWorkflows

Provider

omnisend

Workflows

copy-and-send-campaign
Copy a campaign, verify the copy, and queue it for sending.
Duplicates an existing campaign, fetches the new copy by id to confirm persistence, and then triggers the send of the copy.
3 steps inputs: apiKey, sourceCampaignId outputs: copyId, sendStatus
1
copyCampaign
{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}~1copy/post
Copy the source campaign. Returns 201 Created with the new campaign id.
2
getCopy
{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}/get
Read the copied campaign back by id to confirm it persisted before sending.
3
sendCopy
{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}~1send/post
Queue the copied campaign for sending. Returns 202 Accepted when queued.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Omnisend Copy and Send Campaign
  summary: Copy an existing campaign, read the copy to confirm, then queue it for sending.
  description: >-
    Reuses a proven campaign as the basis for a new send. The workflow copies an
    existing campaign by id, reads the resulting copy back to confirm it
    persisted, and then queues the copy for sending. Every step spells out its
    request inline, including the X-API-KEY header, so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: campaignsApi
  url: ../openapi/omnisend-campaigns-api-openapi.yml
  type: openapi
workflows:
- workflowId: copy-and-send-campaign
  summary: Copy a campaign, verify the copy, and queue it for sending.
  description: >-
    Duplicates an existing campaign, fetches the new copy by id to confirm
    persistence, and then triggers the send of the copy.
  inputs:
    type: object
    required:
    - apiKey
    - sourceCampaignId
    properties:
      apiKey:
        type: string
        description: The Omnisend API key sent in the X-API-KEY header.
      sourceCampaignId:
        type: string
        description: The id of the campaign to copy.
  steps:
  - stepId: copyCampaign
    description: >-
      Copy the source campaign. Returns 201 Created with the new campaign id.
    operationPath: '{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}~1copy/post'
    parameters:
    - name: X-API-KEY
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $inputs.sourceCampaignId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      copyId: $response.body#/id
  - stepId: getCopy
    description: >-
      Read the copied campaign back by id to confirm it persisted before
      sending.
    operationPath: '{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}/get'
    parameters:
    - name: X-API-KEY
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.copyCampaign.outputs.copyId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      copyId: $response.body#/id
  - stepId: sendCopy
    description: >-
      Queue the copied campaign for sending. Returns 202 Accepted when queued.
    operationPath: '{$sourceDescriptions.campaignsApi.url}#/paths/~1campaigns~1{id}~1send/post'
    parameters:
    - name: X-API-KEY
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.getCopy.outputs.copyId
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      sendStatus: $statusCode
  outputs:
    copyId: $steps.getCopy.outputs.copyId
    sendStatus: $steps.sendCopy.outputs.sendStatus
x-provenance:
  reviewed: '2026-08-13'
  status: stale
  note: >-
    Authored against the pre-2026-03-15 Omnisend contract (base https://api.omnisend.com/v5,
    X-API-KEY header) using a documentation-derived scaffold spec, which the 2026-08-13 enrichment
    pass superseded with 15 OpenAPI documents harvested from Omnisend's own docs host. The current
    contract uses base https://api.omnisend.com/api, a required Omnisend-Version: 2026-03-15 header
    and Authorization: Omnisend-API-Key {key}. This workflow needs regenerating against
    openapi/omnisend-*-openapi.yml before it will execute.

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/omnisend-copy-and-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.