Create automated, like-live, and just-in-time webinar funnels in minutes on the same platform trusted by over 12,000 businesses.
Triggered when a new webinar is created. See the documentation
Emit new event when any of the specified SendGrid events is received
Lists all scheduled sessions for a specific webinar. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Registers a new attendee for a specific webinar. See the documentation
The WebinarKit API provides programmable hooks into WebinarKit's suite, enabling automation of webinar management tasks like creating webinars, registering participants, and sending out reminders. With Pipedream, you can craft workflows that react to various triggers, such as new registrant sign-ups or attendee data, and connect these events to hundreds of other apps. This integration can vastly improve the efficiency of your webinar operations by automating repetitive tasks, collecting data, and nurturing leads with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinarkit: {
type: "app",
app: "webinarkit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://webinarkit.com/api/webinars`,
headers: {
Authorization: `Bearer ${this.webinarkit.$auth.api_key}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})