Cross-Provider Workflow

Meta Profile to Airtable Store and Slack Notify

Version 1.0.0

Fetch the authenticated Meta profile, store it in Airtable, then notify Slack.

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

Providers Orchestrated

meta airtable slack

Workflows

meta-profile-to-airtable
Get the Meta profile, store in Airtable, notify Slack.
Fetches the authenticated Meta profile, stores the id and name as an Airtable record, then posts a Slack notification confirming the sync.
3 steps inputs: baseId, slackChannel, tableIdOrName outputs: messageTs, profileId, recordId
1
get-me
$sourceDescriptions.metaApi.getMe
Fetch the authenticated Meta user's profile.
2
store-airtable
$sourceDescriptions.airtableApi.createRecords
Store the Meta profile in an Airtable record.
3
notify-slack
$sourceDescriptions.slackChatApi.postChatPostmessage
Notify Slack that the Meta profile was synced.

Source API Descriptions

Arazzo Workflow Specification

soc-meta-profile-to-airtable-store-slack-notify-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Meta Profile to Airtable Store and Slack Notify
  summary: Fetch the authenticated Meta profile, store it in Airtable, then notify Slack.
  description: >-
    An onboarding workflow that fetches the authenticated Meta user's profile via
    the Graph API, stores the profile fields in an Airtable base, and posts a
    Slack notification that the profile was synced. Demonstrates capturing
    identity data from a social platform into a database and alerting a team in
    one Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: metaApi
    url: https://raw.githubusercontent.com/api-evangelist/meta/refs/heads/main/openapi/meta-openapi.yml
    type: openapi
  - 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: meta-profile-to-airtable
    summary: Get the Meta profile, store in Airtable, notify Slack.
    description: >-
      Fetches the authenticated Meta profile, stores the id and name as an
      Airtable record, then posts a Slack notification confirming the sync.
    inputs:
      type: object
      properties:
        baseId:
          type: string
        tableIdOrName:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: get-me
        description: Fetch the authenticated Meta user's profile.
        operationId: $sourceDescriptions.metaApi.getMe
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          profileId: $response.body#/id
          profileName: $response.body#/name
      - stepId: store-airtable
        description: Store the Meta profile in an Airtable record.
        operationId: $sourceDescriptions.airtableApi.createRecords
        requestBody:
          contentType: application/json
          payload:
            records:
              - fields:
                  ProfileId: $steps.get-me.outputs.profileId
                  Name: $steps.get-me.outputs.profileName
                  Source: Meta
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          recordId: $response.body#/records/0/id
      - stepId: notify-slack
        description: Notify Slack that the Meta profile was synced.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.slackChannel
            text: Synced Meta profile $steps.get-me.outputs.profileName to Airtable record $steps.store-airtable.outputs.recordId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      profileId: $steps.get-me.outputs.profileId
      recordId: $steps.store-airtable.outputs.recordId
      messageTs: $steps.notify-slack.outputs.messageTs