The BetterVoice API enables you to build a wide variety of voice-enabled applications. Below are just a few examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bettervoice: {
type: "app",
app: "bettervoice",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bettervoice.com/api/v3/account/settings`,
params: {
username: `${this.bettervoice.$auth.username}`,
token: `${this.bettervoice.$auth.api_token}`,
},
})
},
})
BetterVoice uses API keys for authentication. When you connect your BetterVoice account, Pipedream securely stores the keys so you can easily authenticate to BetterVoice APIs in both code and no-code steps.
You can find your BetterVoice username and API Token on the Account Settings page in your BetterVoice dashboard.