Slack Bot

Interact with Slack with your own bot user

Integrate the Slack Bot API with the Zoom API

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

Archive Channel with Slack Bot API on Meeting Created (Instant) from Zoom API
Zoom + Slack Bot
 
Try it
Create a Channel with Slack Bot API on Meeting Created (Instant) from Zoom API
Zoom + Slack Bot
 
Try it
Delete File with Slack Bot API on Meeting Created (Instant) from Zoom API
Zoom + Slack Bot
 
Try it
Delete Message with Slack Bot API on Meeting Created (Instant) from Zoom API
Zoom + Slack Bot
 
Try it
Find User by Email with Slack Bot API on Meeting Created (Instant) from Zoom API
Zoom + Slack Bot
 
Try it
Meeting Created (Instant) from the Zoom API

Emit new event each time a meeting is created where you're the host

 
Try it
Meeting Started (Instant) from the Zoom API

Emit new event each time a meeting starts where you're the host

 
Try it
Recording Completed (Instant) from the Zoom API

Emit new event each time a new recording completes for a meeting or webinar where you're the host

 
Try it
Meeting Ended (Instant) from the Zoom API

Emit new event each time a meeting ends where you're the host

 
Try it
Meeting Updated (Instant) from the Zoom API

Emit new event each time a meeting is updated where you're the host

 
Try it
Archive Channel with the Slack Bot API

Archive a channel (Bot). See docs here

 
Try it
Create a Channel with the Slack Bot API

Create a new channel (Bot). See docs here

 
Try it
Delete File with the Slack Bot API

Delete a file (Bot). See docs here

 
Try it
Delete Message with the Slack Bot API

Delete a message (Bot). See docs here

 
Try it
Find User by Email with the Slack Bot API

Find a user by matching against their email (Bot). See docs here

 
Try it

Overview of Slack Bot

The Slack Bot API 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 Slack Bot API 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 Slack Bot

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 Zoom

The Zoom API lets you tap into a rich set of functionalities to enhance the video conferencing experience within your own app or workflow. With the Zoom API on Pipedream, you can automatically create meetings, manage users, send meeting notifications, and more, orchestrating these actions within a broader automation. This allows for seamless integration with other services, enabling both data collection and action triggers based on Zoom events.

Pipedream workflows allow you to run any Node.js code that connects to the Zoom API. Just create a new workflow, then add prebuilt Zoom actions (create a meeting, send a chat message, etc.) or write your own code. These workflows can be triggered by HTTP requests, timers, email, or on any app-based event (new tweets, a Github PR, Zoom events, etc).

Connect Zoom

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoom: {
      type: "app",
      app: "zoom",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.