with Mission Mobile and Voiceflow?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mission_mobile: {
type: "app",
app: "mission_mobile",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://clientlogin.missionmobile.net/gateway/xml_account_settings.asp`,
auth: {
username: `${this.mission_mobile.$auth.api_token}`,
password: ``,
},
params: {
guid: `${this.mission_mobile.$auth.account_id}`,
},
})
},
})
The Voiceflow API provides programmatic access to Voiceflow's conversational AI platform, enabling users to create, update, and deploy voice and chat applications. Through Pipedream, developers can automate workflows involving Voiceflow projects, such as syncing conversation designs with external tools, triggering customer support messages based on user interactions, or compiling analytics from user sessions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
voice: {
type: "app",
app: "voice",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.voiceflow.com/v3alpha/knowledge-base/faqs`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.voice.$auth.api_key}`,
},
})
},
})