Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
Triggered when a new contact is created. See the documentation
Triggered when a new message is received. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
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}`,
},
})
},
})
SuperPhone is a communication platform that allows users to manage text and call campaigns through a personal phone number. Leveraging the SuperPhone API on Pipedream, you can automate interactions with contacts, send personalized messages, and get analytics on message deliverability and engagement. With Pipedream's serverless platform, you can trigger workflows on various events, like receiving a new message or a specific keyword, and connect to countless other apps to extend functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
superphone: {
type: "app",
app: "superphone",
}
},
async run({steps, $}) {
const data = {
"query": `{{your_query}}`, // such as "query testAuth {defaultForm {id}}"
}
return await axios($, {
method: "post",
url: `https://api.${this.superphone.$auth.environment}/graphql`,
headers: {
Authorization: `Bearer ${this.superphone.$auth.api_key}`,
"Accept": `application/json`,
},
data,
})
},
})