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.
Go to siteWith the Avochato API, you can:
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}`,
},
})
},
})
Avochato uses API keys for authentication. When you connect your Avochato account, Pipedream securely stores the keys so you can easily authenticate to Avochato APIs in both code and no-code steps.
To retrieve your Auth keys,