Cross-Provider Workflow

Airtable Contact to SendGrid Marketing Contact

Version 1.0.0

Read an Airtable contact, then upsert it into SendGrid Marketing.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

airtable sendgrid

Workflows

contact-to-sendgrid
List an Airtable contact, then upsert it into SendGrid.
Lists records from an Airtable contacts table and upserts the first contact's email into SendGrid Marketing Campaigns.
2 steps inputs: baseId, listId, tableIdOrName outputs: contactEmail, jobId
1
list-contacts
$sourceDescriptions.airtableApi.listRecords
List contact records from the Airtable table.
2
upsert-contact
$sourceDescriptions.sendgridContactsApi.UpdateContact
Upsert the contact into SendGrid Marketing Campaigns.

Source API Descriptions

Arazzo Workflow Specification

prod-airtable-contact-to-sendgrid-list-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Contact to SendGrid Marketing Contact
  summary: Read an Airtable contact, then upsert it into SendGrid Marketing.
  description: >-
    A productivity and internal-ops workflow that reads contact records from an
    Airtable table and upserts them into SendGrid Marketing Campaigns, syncing a
    database of contacts into the email platform. Demonstrates chaining a
    database provider and a communications provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: airtableApi
    url: https://raw.githubusercontent.com/api-evangelist/airtable/refs/heads/main/openapi/airtable-records-api-openapi.yml
    type: openapi
  - name: sendgridContactsApi
    url: https://raw.githubusercontent.com/api-evangelist/sendgrid/refs/heads/main/openapi/sendgrid-contacts-api-openapi.yml
    type: openapi
workflows:
  - workflowId: contact-to-sendgrid
    summary: List an Airtable contact, then upsert it into SendGrid.
    description: >-
      Lists records from an Airtable contacts table and upserts the first
      contact's email into SendGrid Marketing Campaigns.
    inputs:
      type: object
      properties:
        baseId:
          type: string
        tableIdOrName:
          type: string
        listId:
          type: string
    steps:
      - stepId: list-contacts
        description: List contact records from the Airtable table.
        operationId: $sourceDescriptions.airtableApi.listRecords
        parameters:
          - name: baseId
            in: path
            value: $inputs.baseId
          - name: tableIdOrName
            in: path
            value: $inputs.tableIdOrName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          contactEmail: $response.body#/records/0/fields/Email
          contactName: $response.body#/records/0/fields/Name
      - stepId: upsert-contact
        description: Upsert the contact into SendGrid Marketing Campaigns.
        operationId: $sourceDescriptions.sendgridContactsApi.UpdateContact
        requestBody:
          contentType: application/json
          payload:
            list_ids:
              - $inputs.listId
            contacts:
              - email: $steps.list-contacts.outputs.contactEmail
                first_name: $steps.list-contacts.outputs.contactName
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          jobId: $response.body#/job_id
    outputs:
      contactEmail: $steps.list-contacts.outputs.contactEmail
      jobId: $steps.upsert-contact.outputs.jobId

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/prod-airtable-contact-to-sendgrid-list-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.