Grow your business with ChatMarketing today. Connect with customers via Messenger, SMS, Email, or IG using ManyChat.
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.
Watches for changes to specific files in a shared drive, emitting an event when a change is made to one of those files
Emit new event when a selected custom field on a user profile is added or updated. See the documentation
Emit new event when a new file is added in your linked Google Drive
Emit new event when a comment is created or modified in the selected file
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
Locates a user based on a particular custom field's value. See the documentation
Create a copy of the specified file. See the documentation for more information
Delivers a dynamic message to a particular user specified by their user ID. See the documentation
Create a new empty folder. See the documentation for more information
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.
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`,
},
})
},
})
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.
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/drive/v3/about?fields=user`,
headers: {
Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
},
})
},
})