ManyChat

Grow your business with ChatMarketing today. Connect with customers via Messenger, SMS, Email, or IG using ManyChat.

Integrate the ManyChat API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on New Or Updated Custom Field from ManyChat API
ManyChat + Google Drive
 
Try it
Add Tag to User with ManyChat API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + ManyChat
 
Try it
Add Tag to User with ManyChat API on Changes to Specific Files from Google Drive API
Google Drive + ManyChat
 
Try it
Add Tag to User with ManyChat API on New Files (Instant) from Google Drive API
Google Drive + ManyChat
 
Try it
Add Tag to User with ManyChat API on New or Modified Comments from Google Drive API
Google Drive + ManyChat
 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event when 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 when a change is made to one of those files

 
Try it
New Or Updated Custom Field from the ManyChat API

Emit new event when a selected custom field on a user profile is added or updated. See the documentation

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

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

 
Try it
New or Modified Comments (Instant) from the Google Drive API

Emit new event when a comment is created or modified in the selected file

 
Try it
Add Tag to User with the ManyChat API

Adds a specific tag to a user specified by their user ID. This action is essential to categorize and filter users based on business-specific parameters. See the documentation

 
Try it
Find User by Custom Field with the ManyChat API

Locates a user based on a particular custom field's value. See the documentation

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the documentation for more information

 
Try it
Send Dynamic Message to User with the ManyChat API

Delivers a dynamic message to a particular user specified by their user ID. See the documentation

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it

Overview of ManyChat

The ManyChat API lets you manage and automate conversations in your chatbot, giving you control over user data, tags, and messaging. Integrating ManyChat with Pipedream can supercharge your chatbot workflows, enabling you to connect your ManyChat bot to various apps and services, automate interactions based on triggers, and analyze chatbot data to improve user engagement.

Connect ManyChat

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: {
    manychat: {
      type: "app",
      app: "manychat",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.manychat.com/fb/page/getInfo`,
      headers: {
        Authorization: `Bearer ${this.manychat.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of Google Drive

The Google Drive API on Pipedream allows you to automate various file management tasks, such as creating, reading, updating, and deleting files within your Google Drive. You can also share files, manage permissions, and monitor changes to files and folders. This opens up possibilities for creating workflows that seamlessly integrate with other apps and services, streamlining document handling, backup processes, and collaborative workflows.

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}`,
      },
    })
  },
})