Automate & Combine Instagram Direct Messages, Facebook Messenger, Google Business Messages, WhatsApp, Telegram, Emails, SMS text messages, Voice calls, Viber and Webchat to Generate sales, leads and Grow Your Business on autopilot.
Create a new custom field in the HeroBot account. See the documentation
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Saves pertinent information about a new user. See the documentation
Sends a message to a user through the chatbot. See the documentation
The HeroBot Chatbot Marketing API lets you interact with the HeroBot platform to manage and deliver chatbot services. With this API, you can automate conversations, broadcast messages, and gather insights from chatbot interactions. Pipedream's serverless platform enables you to create workflows integrating HeroBot with other apps, triggering actions based on events, and processing data without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
herobot_chatbot_marketing: {
type: "app",
app: "herobot_chatbot_marketing",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.herobot.app/api/accounts/me`,
headers: {
"X-ACCESS-TOKEN": `${this.herobot_chatbot_marketing.$auth.api_token}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})