Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
Emit new event when a new subscription is cancelled.
Emit new event when a new subscription is created.
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}`,
},
})
},
})
The Lemon Squeezy API lets you manage and sell digital products with ease. On Pipedream, you can integrate Lemon Squeezy with your sales, marketing, and support tools to automate tasks like customer follow-ups, license management, and sales reporting. With Pipedream's serverless platform, you can create workflows that trigger on Lemon Squeezy events or schedule tasks, process data, and connect to a vast array of other apps and services without writing backend infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lemon_squeezy: {
type: "app",
app: "lemon_squeezy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lemonsqueezy.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.lemon_squeezy.$auth.api_key}`,
"Accept": `application/vnd.api+json`,
"Content-Type": `application/vnd.api+json`,
},
})
},
})