SMS API and Voice API platform
Emit new event when a new SMS is received. See the docs.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})