SendGrid · Arazzo Workflow

SendGrid Create and Schedule Single Send

Version 1.0.0

Create a Single Send draft, schedule it for delivery, and read it back.

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

Provider

sendgrid

Workflows

create-and-schedule-single-send
Create a Single Send, schedule it, and confirm its status.
Creates a Single Send draft targeting a list, schedules it for delivery, and reads it back to confirm.
3 steps inputs: apiKey, htmlContent, listId, sendAt, senderId, singleSendName, subject, suppressionGroupId outputs: confirmedStatus, scheduledStatus, singleSendId
1
createSingleSend
Create a Single Send draft targeting the supplied list with inline subject and HTML content.
2
scheduleSingleSend
Schedule the Single Send for delivery by setting send_at to a future time or the keyword now.
3
getSingleSend
Read the Single Send back to confirm its scheduled status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SendGrid Create and Schedule Single Send
  summary: Create a Single Send draft, schedule it for delivery, and read it back.
  description: >-
    Drives a Single Send from draft to scheduled. The workflow creates a Single
    Send targeting a recipient list with inline subject and HTML content, then
    schedules it for delivery by setting send_at to a future ISO 8601 time (or
    the keyword now), and finally reads the Single Send back to confirm its
    scheduled status. The create returns 201, the schedule returns 201, and the
    read returns 200. Every step inlines its request and bearer token so the
    flow can be 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-single-sends-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: singleSendsApi
  url: ../openapi/sendgrid-single-sends-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-schedule-single-send
  summary: Create a Single Send, schedule it, and confirm its status.
  description: >-
    Creates a Single Send draft targeting a list, schedules it for delivery, and
    reads it back to confirm.
  inputs:
    type: object
    required:
    - apiKey
    - singleSendName
    - listId
    - subject
    - htmlContent
    - senderId
    - suppressionGroupId
    - sendAt
    properties:
      apiKey:
        type: string
        description: SendGrid API key sent as a bearer token.
      singleSendName:
        type: string
        description: The name for the new Single Send.
      listId:
        type: string
        description: The recipient list ID the Single Send targets.
      subject:
        type: string
        description: The subject line of the Single Send.
      htmlContent:
        type: string
        description: The HTML body content of the Single Send.
      senderId:
        type: integer
        description: The ID of the verified sender.
      suppressionGroupId:
        type: integer
        description: The unsubscribe suppression group ID.
      sendAt:
        type: string
        description: ISO 8601 send time in the future, or the keyword "now".
  steps:
  - stepId: createSingleSend
    description: >-
      Create a Single Send draft targeting the supplied list with inline subject
      and HTML content.
    operationId: CreateSingleSend
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.singleSendName
        send_to:
          list_ids:
          - $inputs.listId
        email_config:
          subject: $inputs.subject
          html_content: $inputs.htmlContent
          sender_id: $inputs.senderId
          suppression_group_id: $inputs.suppressionGroupId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      singleSendId: $response.body#/id
  - stepId: scheduleSingleSend
    description: >-
      Schedule the Single Send for delivery by setting send_at to a future time
      or the keyword now.
    operationId: ScheduleSingleSend
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: id
      in: path
      value: $steps.createSingleSend.outputs.singleSendId
    requestBody:
      contentType: application/json
      payload:
        send_at: $inputs.sendAt
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      status: $response.body#/status
  - stepId: getSingleSend
    description: Read the Single Send back to confirm its scheduled status.
    operationId: GetSingleSend
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: id
      in: path
      value: $steps.createSingleSend.outputs.singleSendId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  outputs:
    singleSendId: $steps.createSingleSend.outputs.singleSendId
    scheduledStatus: $steps.scheduleSingleSend.outputs.status
    confirmedStatus: $steps.getSingleSend.outputs.status

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-singlesend-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.