import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vida: {
type: "app",
app: "vida",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vida.dev/api/v2/listAccounts`,
params: {
token: `${this.vida.$auth.api_token}`,
},
})
},
})
Emit new events after completion of any communication handled by your Vida AI agent, be it a call, text, or email.
Emit new event when an incoming call or message is received before answered by an agent. Useful for providing context about the caller or messenger to your agent before response.
Uploads additional context for a conversation with your AI agent. Helpful when integrating data from external CRMs. See the documentation
Vida uses API keys for authentication. When you connect your Vida account, Pipedream securely stores the keys so you can easily authenticate to Vida APIs in both code and no-code steps.