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