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 for each message posted to one or more channels in a Discord server
Emit new event immediately after a registrant joins a webinar session or starts a replay.
Emit new event for each command posted to one or more channels in a Discord server
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`,
},
})
},
})
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})