Cross-Provider Workflow

Airtable Record to Slack Notification

Version 1.0.0

Create an Airtable record, then announce it in a Slack channel.

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

Providers Orchestrated

airtable slack

Workflows

record-and-notify
Create an Airtable record and post a Slack notification.
Creates a record in an Airtable base, then posts a notification to a Slack channel via chat.postMessage.
2 steps inputs: baseId, channel, notes, tableIdOrName, title outputs: messageTs, recordId
1
create-record
$sourceDescriptions.airtableApi.createRecords
Create a new record in the Airtable base.
2
notify-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Announce the new record in the Slack channel.

Source API Descriptions

Arazzo Workflow Specification

geo-airtable-record-slack-notify.yml Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Record to Slack Notification
  summary: Create an Airtable record, then announce it in a Slack channel.
  description: >-
    A high-value cross-domain workflow that creates a new record in an Airtable base
    and announces the new entry to a team in a Slack channel. Demonstrates pairing a
    no-code database provider with a team messaging provider so new database entries
    trigger real-time team notifications.
  version: 1.0.0
sourceDescriptions:
  - name: airtableApi
    url: https://raw.githubusercontent.com/api-evangelist/airtable/refs/heads/main/openapi/airtable-airtable-api-openapi.yml
    type: openapi
  - name: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-openapi.yml
    type: openapi
workflows:
  - workflowId: record-and-notify
    summary: Create an Airtable record and post a Slack notification.
    description: >-
      Creates a record in an Airtable base, then posts a notification to a Slack
      channel via chat.postMessage.
    inputs:
      type: object
      properties:
        baseId:
          type: string
        tableIdOrName:
          type: string
        title:
          type: string
        notes:
          type: string
        channel:
          type: string
    steps:
      - stepId: create-record
        description: Create a new record in the Airtable base.
        operationId: $sourceDescriptions.airtableApi.createRecords
        parameters:
          - name: baseId
            in: path
            value: $inputs.baseId
          - name: tableIdOrName
            in: path
            value: $inputs.tableIdOrName
        requestBody:
          contentType: application/json
          payload:
            records:
              - fields:
                  Title: $inputs.title
                  Notes: $inputs.notes
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          recordId: $response.body#/records/0/id
      - stepId: notify-slack
        description: Announce the new record in the Slack channel.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.channel
            text: $inputs.title
        successCriteria:
          - condition: $statusCode == 200
          - condition: $response.body#/ok == true
        outputs:
          messageTs: $response.body#/ts
    outputs:
      recordId: $steps.create-record.outputs.recordId
      messageTs: $steps.notify-slack.outputs.messageTs

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/geo-airtable-record-slack-notify"
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 email required.

A second provider on the same verified email joins the account you already have.