SendGrid · Arazzo Workflow

SendGrid Create and Schedule Campaign

Version 1.0.0

Create a legacy Marketing Campaign targeting lists and schedule it for delivery.

1 workflow 1 source API 1 provider
View Spec View on GitHub EmailEmail APIMarketing EmailSMTPT1Transactional EmailEmail MarketingDeliverabilityMarketingArazzoWorkflows

Provider

sendgrid

Workflows

create-and-schedule-campaign
Create a campaign targeting lists and schedule it for delivery.
Creates a campaign with content and recipients, then schedules it at the supplied send time.
2 steps inputs: apiKey, htmlContent, listIds, plainContent, sendAt, senderId, subject, suppressionGroupId, title outputs: campaignId, sendAt, status
1
createCampaign
Create a campaign with content and recipient lists.
2
scheduleCampaign
Schedule the campaign for delivery at the supplied send time.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SendGrid Create and Schedule Campaign
  summary: Create a legacy Marketing Campaign targeting lists and schedule it for delivery.
  description: >-
    Drives a legacy Marketing Campaign from draft to scheduled. The workflow
    creates a campaign with a title, subject, sender, recipient list IDs,
    suppression group, and HTML content, then schedules it for delivery at a
    Unix timestamp. The create returns 201 and the schedule returns 201 with the
    campaign status. Each step inlines its request and bearer token so the flow
    can be read and run without the OpenAPI files.
  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: sendgrid-campaigns-api-api-openapi.yml
      confidence: 0.78
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: campaignsApiApi
  url: ../openapi/sendgrid-campaigns-api-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-schedule-campaign
  summary: Create a campaign targeting lists and schedule it for delivery.
  description: >-
    Creates a campaign with content and recipients, then schedules it at the
    supplied send time.
  inputs:
    type: object
    required:
    - apiKey
    - title
    - subject
    - senderId
    - listIds
    - suppressionGroupId
    - htmlContent
    - plainContent
    - sendAt
    properties:
      apiKey:
        type: string
        description: SendGrid API key sent as a bearer token.
      title:
        type: string
        description: The internal title of the campaign.
      subject:
        type: string
        description: The subject line of the campaign.
      senderId:
        type: integer
        description: The ID of the sender used as the from address.
      listIds:
        type: array
        description: The recipient list IDs the campaign targets.
        items:
          type: integer
      suppressionGroupId:
        type: integer
        description: The unsubscribe suppression group ID.
      htmlContent:
        type: string
        description: The HTML content of the campaign.
      plainContent:
        type: string
        description: The plain text content of the campaign.
      sendAt:
        type: integer
        description: The Unix timestamp at which to send the campaign.
  steps:
  - stepId: createCampaign
    description: Create a campaign with content and recipient lists.
    operationId: CreateCampaign
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        subject: $inputs.subject
        sender_id: $inputs.senderId
        list_ids: $inputs.listIds
        suppression_group_id: $inputs.suppressionGroupId
        html_content: $inputs.htmlContent
        plain_content: $inputs.plainContent
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      campaignId: $response.body#/id
  - stepId: scheduleCampaign
    description: Schedule the campaign for delivery at the supplied send time.
    operationId: ScheduleCampaign
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: campaign_id
      in: path
      value: $steps.createCampaign.outputs.campaignId
    requestBody:
      contentType: application/json
      payload:
        send_at: $inputs.sendAt
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      status: $response.body#/status
      sendAt: $response.body#/send_at
  outputs:
    campaignId: $steps.createCampaign.outputs.campaignId
    status: $steps.scheduleCampaign.outputs.status
    sendAt: $steps.scheduleCampaign.outputs.sendAt

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/sendgrid-create-schedule-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.