with Piped and CallHub?
Emit new event when a call event of the type specified is received. See the docs
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
piped: {
type: "app",
app: "piped",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.piped.$auth.instance_api_url}/suggestions`,
params: {
query: `Game`,
},
})
},
})
The CallHub API offers programmatic access to a range of telecommunication features, such as phone banking, text messaging, and voice broadcasting. Integrating CallHub with Pipedream allows users to automate these communication services within custom workflows. With Pipedream’s serverless platform, you can react to events across various apps, store and manipulate data, and trigger communications via CallHub based on user-defined criteria. This seamless integration expands the automation possibilities for campaign management, engagement tracking, and proactive notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
callhub: {
type: "app",
app: "callhub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.callhub.io/v1/users`,
headers: {
"Authorization": `Token ${this.callhub.$auth.api_key}`,
},
})
},
})