WebinarJam is an online event platform that provides users with powerful APIs to create engaging virtual events. With the WebinarJam API, users can easily build innovative and powerful virtual experiences that drive audience engagement and increase conversions. Here are some of the many things users can build using the WebinarJam API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinarjam: {
type: "app",
app: "webinarjam",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.webinarjam.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://api.webinarjam.com/webinarjam/webinars`,
data,
})
},
})
WebinarJam uses API keys for authentication. When you connect your WebinarJam account, Pipedream securely stores the keys so you can easily authenticate to WebinarJam APIs in both code and no-code steps.
Your API Key can be found in your main webinar dashboard, by clicking on the Advanced link for any of your webinars. You don’t need a new API Key for each webinar, since the Key is global for your entire account.