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
Create a new channel in Microsoft Teams. See the docs here
Saves pertinent information about a new user. See the documentation
Get the list of shift instances for a team. 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}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})