with HeroBot Chatbot Marketing and Systeme.io?
Create a new custom field in the HeroBot account. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
systeme_io: {
type: "app",
app: "systeme_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.systeme.io/api/contacts`,
headers: {
"x-api-key": `${this.systeme_io.$auth.api_key}`,
},
})
},
})