with Wafrow and Plivo?
Emit new event when a new SMS is received. See the docs
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wafrow: {
type: "app",
app: "wafrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://wafrow.com/api/me`,
headers: {
Authorization: `Bearer ${this.wafrow.$auth.api_token}`,
"accept": `*/*`,
},
})
},
})
The Plivo API taps into the power of cloud communication, allowing you to programmatically send SMS messages, make voice calls, and manage user verifications among other telephony functions. With Pipedream's serverless platform, you can easily integrate Plivo into workflows that automate these communication tasks, react to incoming messages or calls, and connect with numerous other apps for comprehensive automation solutions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
plivo: {
type: "app",
app: "plivo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.plivo.com/v1/Account/${this.plivo.$auth.auth_id}/Message/`,
auth: {
username: `${this.plivo.$auth.auth_id}`,
password: `${this.plivo.$auth.auth_token}`,
},
})
},
})