Run more effective webinars with less work.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Demio, a webinar platform, offers an API that lets you automate various aspects of your webinar experience. With the Demio API on Pipedream, you can seamlessly integrate webinar registration, attendance tracking, and follow-up actions into your business workflows. Pipedream's serverless platform facilitates the creation of complex automations that can trigger actions based on events in Demio, connecting it with hundreds of other apps for a cohesive ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
demio: {
type: "app",
app: "demio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.demio.com/api/v1/events`,
headers: {
"Api-Key": `${this.demio.$auth.api_key}`,
"Api-Secret": `${this.demio.$auth.api_secret}`,
},
})
},
})
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}`,
},
})
},
})