Slack Bot

Interact with Slack with your own bot user

Integrate the Slack Bot API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on New Direct Message from Slack Bot API
Slack Bot + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Message In Channel from Slack Bot API
Slack Bot + Google Drive
 
Try it
Archive Channel with Slack Bot API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + Slack Bot
 
Try it
Archive Channel with Slack Bot API on Changes to Specific Files from Google Drive API
Google Drive + Slack Bot
 
Try it
Archive Channel with Slack Bot API on New Files (Instant) from Google Drive API
Google Drive + Slack Bot
 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files

 
Try it
New Direct Message from the Slack Bot 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 Message In Channel from the Slack Bot API

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

 
Try it
New Files (Instant) from the Google Drive API

Emit new event any time a new file is added in your linked Google Drive

 
Try it
Archive Channel with the Slack Bot API

Archive a channel (Bot). See docs here

 
Try it
Add File Sharing Preference with the Google Drive API

Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information

 
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

Overview of Slack Bot

Slack Bot APIs offer powerful and flexible ways to automate repetitive tasks
and integrate workflows from various services. With the help of these APIs, it
is possible to develop Slack bots capable of exiting and entering specific
channels as well as performing various actions requested from users.

A Slack bot can be used to automate specific tasks and carry out routine admin
jobs such as checking the team’s working time, organizing team meetings,
managing customer inquiries and so on. These bots can be programmed to inform
the members of the team when tasks are completed. Some of the examples of what
you can create using the Slack Bot APIs are:

  • Automated reminders
  • Productivity and time tracking
  • Data analysis and processing
  • Internal communication releases
  • Integrations with external tools and services
  • Conversation and inquiry management
  • Automation of customer service
  • Scheduling and tracking of tasks
  • Personalised customer recommendations

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 Google Drive

Using the Google Drive API, you can build applications that:

  • Create and manage files and folders
  • Download and upload files
  • Share and organize files
  • Search for files
  • Track changes to files
  • And much more!

Connect Google Drive

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: {
    google_drive: {
      type: "app",
      app: "google_drive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
      },
    })
  },
})