Avochato allows you to text customers and internal teams more efficiently. Automation and collaboration features such as templates, auto-assignment, shared notes, tags, and conversation history make texting easier to manage at scale.
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
The Avochato API provides a communication toolkit that enables automated text messaging and phone call workflows. With Pipedream, you can leverage this API to craft custom automations that respond to incoming messages, send alerts, or synchronize communication with your CRM, among other functionalities. Imagine streamlining customer support by auto-responding to common queries, or improving sales engagement by triggering timely follow-up messages—all this without manual intervention, directly harnessing the power of Avochato's communication capabilities within Pipedream's serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
avochato: {
type: "app",
app: "avochato",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.avochato.com/v1/accounts`,
params: {
auth_id: `${this.avochato.$auth.auth_id}`,
auth_secret: `${this.avochato.$auth.auth_secret}`,
},
})
},
})
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}`,
},
})
},
})