Cross-Provider Workflow

Slack Channel Create to Notion Page

Version 1.0.0

Create a Slack channel, then document it as a Notion page.

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

Providers Orchestrated

slack notion

Workflows

channel-to-notion
Create a Slack channel, then create a Notion page documenting it.
Creates a new Slack channel and creates a Notion page that documents the channel name and id in a parent database.
2 steps inputs: channelName, parentDatabaseId outputs: channelId, pageUrl
1
create-channel
$sourceDescriptions.slackConversationsApi.postConversationsCreate
Create the new Slack channel.
2
document-channel
$sourceDescriptions.notionApi.createPage
Create a Notion page documenting the new channel.

Source API Descriptions

Arazzo Workflow Specification

prod-slack-channel-create-to-notion-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Slack Channel Create to Notion Page
  summary: Create a Slack channel, then document it as a Notion page.
  description: >-
    A productivity and internal-ops workflow that creates a new Slack channel
    for a project or incident and documents it as a Notion page so the channel
    has a written home in the knowledge base. Demonstrates chaining a messaging
    provider and a knowledge-base provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: slackConversationsApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-conversations-api-openapi.yml
    type: openapi
  - name: notionApi
    url: https://raw.githubusercontent.com/api-evangelist/notion/refs/heads/main/openapi/notion-pages-api-openapi.yml
    type: openapi
workflows:
  - workflowId: channel-to-notion
    summary: Create a Slack channel, then create a Notion page documenting it.
    description: >-
      Creates a new Slack channel and creates a Notion page that documents the
      channel name and id in a parent database.
    inputs:
      type: object
      properties:
        channelName:
          type: string
        parentDatabaseId:
          type: string
    steps:
      - stepId: create-channel
        description: Create the new Slack channel.
        operationId: $sourceDescriptions.slackConversationsApi.postConversationsCreate
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            name: $inputs.channelName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          channelId: $response.body#/channel/id
          channelName: $response.body#/channel/name
      - stepId: document-channel
        description: Create a Notion page documenting the new channel.
        operationId: $sourceDescriptions.notionApi.createPage
        requestBody:
          contentType: application/json
          payload:
            parent:
              database_id: $inputs.parentDatabaseId
            properties:
              title:
                title:
                  - text:
                      content: $steps.create-channel.outputs.channelName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          pageUrl: $response.body#/url
    outputs:
      channelId: $steps.create-channel.outputs.channelId
      pageUrl: $steps.document-channel.outputs.pageUrl

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-slack-channel-create-to-notion-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.