with GoTo Webinar and Rendi?
Emit new event when a new FFmpeg command is submitted. See the documentation
Emit new event when a registrant joins a weginar.
Emit new event when a new file is uploaded to an account. See the documentation
Register an attendee for a scheduled webinar. See the documentation
Get the status of a previously submitted FFmpeg command. See the documentation
Creates a single session webinar, a sequence of webinars or a series of webinars depending on the type field in the body. See the documentation
Get the list of all stored files for an account. See the documentation
Submit an FFmpeg command for processing with input and output file specifications. See the documentation
The GoTo Webinar API enables you to automate interactions with your webinars on GoTo Webinar. With this API, you can create, update, and retrieve your webinars, manage registrants, send reminders, and extract analytics data, all through programmatic means. Integrating it with Pipedream, you can build powerful workflows that trigger on specific events, take action using the API, and connect with other apps to streamline your webinar management process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gotowebinar: {
type: "app",
app: "gotowebinar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getgo.com/identity/v1/Users/me`,
headers: {
Authorization: `Bearer ${this.gotowebinar.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rendi: {
type: "app",
app: "rendi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rendi.dev/v1/files`,
headers: {
"x-api-key": `${this.rendi.$auth.api_key}`,
},
})
},
})