with V1CE and WebinarFuel?
Creates a new registrant for a selected webinar. See the documentation
Adds tags to an existing registrant. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
v1ce: {
type: "app",
app: "v1ce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.v1ce.co/contact/info`,
headers: {
"accept": `application/json`,
"authorization": `${this.v1ce.$auth.api_key}`,
},
params: {
contact_id: `${this.v1ce.$auth.contact_id}`,
},
})
},
})
The WebinarFuel API allows users to automate their webinar marketing efforts directly within Pipedream. By integrating WebinarFuel's functionalities, users can manage registrations, send reminders, or handle attendee data in real-time. This can be particularly useful for enriching attendee data, syncing webinar information with other business tools, and managing the entire webinar lifecycle programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinarfuel: {
type: "app",
app: "webinarfuel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.webinarfuel.com/webinars/`,
headers: {
Authorization: `Bearer ${this.webinarfuel.$auth.api_key}`,
},
})
},
})