What do you want to automate

with Bot for Slack and Notion?

Prompt, edit and deploy AI agents that connect to Bot for Slack, Notion and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Emoji Reaction with Bot for Slack API on New Webhook Event (Instant) from Notion API
Notion + Bot for Slack
 
Try it
Add Emoji Reaction with Bot for Slack API on Page Properties Updated (Instant) from Notion API
Notion + Bot for Slack
 
Try it
Add Emoji Reaction with Slack Bot API on New Comment Created from Notion API
Notion + Bot for Slack
 
Try it
Add Emoji Reaction with Slack Bot API on New Database from Notion API
Notion + Bot for Slack
 
Try it
Add Emoji Reaction with Slack Bot API on New or Updated Page in Database (By Timestamp) from Notion API
Notion + Bot for Slack
 
Try it
New Comment Created from the Notion API

Emit new event when a new comment is created in a page or block. See the documentation

 
Try it
New Direct Message from the Bot for Slack API

Emit new event when a message is posted in a direct message channel (Bot). To open a conversation, use the Pipedream Action "Send a Direct Message" to send a message from the Bot, or enable direct messages to the Bot in your App Settings (Settings->App Home->Show Tabs->Messages Tab), and send a direct message to the Bot.

 
Try it
New Database Created from the Notion API

Emit new event when a database is created. See the documentation

 
Try it
New Message In Channel from the Bot for Slack API

Emit new event when a new message is posted to a public, private or group channel (Bot)

 
Try it
New or Updated Page in Database (By Property) from the Notion API

Emit new event when a page is created or updated in the selected database. See the documentation

 
Try it
Add Emoji Reaction with the Bot for Slack API

Add an emoji reaction to a message. See the documentation

 
Try it
Append Block to Parent with the Notion API

Append new and/or existing blocks to the specified parent. See the documentation

 
Try it
Archive Channel with the Bot for Slack API

Archive a channel (Bot). See the documentation

 
Try it
Complete File Upload with the Notion API

Use this action to finalize a mode=multi_part file upload after all of the parts have been sent successfully. See the documentation

 
Try it
Create a Channel with the Bot for Slack API

Create a new channel (Bot). See the documentation

 
Try it
Integrate the Bot for Slack API with the Notion API
Setup the Bot for Slack API trigger to run a workflow which integrates with the Notion API. Pipedream's integration platform allows you to integrate Bot for Slack and Notion remarkably fast. Free for developers.

Overview of Bot for Slack

The bot for Slack allows you to build rich, interactive bots for Slack workspaces. These bots can respond to messages, post updates, and interact with users in various ways. With the bot for Slack on Pipedream, developers can create automated workflows that trigger on specific events in Slack, such as new messages or reactions, and then perform defined actions, like sending data to other apps or processing the information within Pipedream's serverless platform. This tight integration with Pipedream enables both simple and complex automations, leveraging Pipedream's ability to connect with numerous apps and its powerful built-in code steps.

Connect Bot for Slack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    slack_bot: {
      type: "app",
      app: "slack_bot",
    },
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/auth.test`,
      headers: {
        Authorization: `Bearer ${this.slack_bot.$auth.bot_token}`,
      },
      method: 'post',
    })
  },
})

Overview of Notion

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.

Connect Notion

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    notion: {
      type: "app",
      app: "notion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.notion.com/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
        "Notion-Version": `2021-08-16`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo