eWebinar turns any video into an interactive, automated webinar. We run your webinars for you so you don't have to.
Emit new event when a registrant submits a completed registration form.
Emit new event immediately after a registrant joins a webinar session or starts a replay.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Updates a record if recordId
is provided or adds a record to a table.
The eWebinar API allows you to automate interactions with your eWebinar sessions, such as listing upcoming webinars, registering participants, and retrieving attendee data. By integrating the eWebinar API with Pipedream, you can craft workflows that connect your webinars with other apps and services, enabling you to streamline event management, follow-up processes, and audience engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ewebinar: {
type: "app",
app: "ewebinar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ewebinar.com/v2/registrants`,
headers: {
Authorization: `Bearer ${this.ewebinar.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})