with AI Chatbot Hub and Follow Up Boss?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ai_chatbot_hub: {
type: "app",
app: "ai_chatbot_hub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.aichatbothub.com/api/v1/chatbots`,
headers: {
Authorization: `Bearer ${this.ai_chatbot_hub.$auth.api_key}`,
},
})
},
})
The Follow Up Boss API allows you to interact with your customer relationship management data programmatically. With it, you can create, read, update, and delete contacts, deals, and communication logs. On Pipedream, you leverage this API to build automations and integrations that streamline your sales process, synchronize data across platforms, and trigger personalized client interactions based on specific events or conditions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
follow_up_boss: {
type: "app",
app: "follow_up_boss",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.followupboss.com/v1/me`,
auth: {
username: `${this.follow_up_boss.$auth.api_key}`,
password: ``,
},
})
},
})