The best webinar software. Grow your business, engage with customers and be an expert with professional webinars.
You can build a lot of things with the WebinarGeek API! WebinarGeek enables you
to effortlessly create and manage successful webinars and online events,
featuring all the necessary features – streaming, engagement, and analytics.
Using the WebinarGeek API, you can create features and services to increase
your webinar's reach and engagement. Here are some examples:
Whether you want to create automated messages, gamification elements, and
custom themes, or harness the analytics data and integrate third-party
channels, the WebinarGeek API has the features you need to create a unique and
successful webinar.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinargeek: {
type: "app",
app: "webinargeek",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.webinargeek.com/api/v2/account`,
headers: {
"Api-Token": `${this.webinargeek.$auth.api_key}`,
},
})
},
})
The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.
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`,
},
})
},
})