with Elevio and ManyChat?
Emit new event any time a new article is created. See the documentation
Emit new event when a selected custom field on a user profile is added or updated. See the documentation
Emit new event each time new feedback is submitted by a user via the elevio widget. See the documentation
Creates a new article in the Elevio knowledge base. See the documentation
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
Deletes an existing article from the Elevio knowledge base. See the documentation
Locates a user based on a particular custom field's value. See the documentation
Delivers a dynamic message to a particular user specified by their user ID. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elevio: {
type: "app",
app: "elevio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.elev.io/v1/articles`,
headers: {
Authorization: `Bearer ${this.elevio.$auth.api_token}`,
"x-api-key": `${this.elevio.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})