Chatfuel is a chatbots nocode service for Facebook, Instagram, and Messenger. The Dashboard API provides access to onternal methods used by Chatfuel's dashboard
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
Chatfuel’s Dashboard API opens a realm of possibilities for automating and streamlining chatbot interactions and management. With this API, you can programmatically update content, retrieve analytics, manage users, and automate messaging. This empowers you to dynamically adjust chat flows based on user behavior or external triggers, analyze user interactions for insights, and personalize the chat experience at scale.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chatfuel_dashboard_api_: {
type: "app",
app: "chatfuel_dashboard_api_",
}
},
async run({steps, $}) {
const data = {
"title": `YOUR_BOT_TITLE`,
}
return await axios($, {
method: "post",
url: `https://dashboard.chatfuel.com/api/bots`,
headers: {
Authorization: `Bearer ${this.chatfuel_dashboard_api_.$auth.api_token}`,
},
data,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})