Create Pre-Recorded Evergreen Webinars
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
The EverWebinar API lets you integrate the power of automated webinar marketing into your own apps and workflows. With EverWebinar, you can schedule and run automated webinars as if they were live, engaging audiences with interactive elements such as polls and chat simulations. Using Pipedream, you can trigger actions based on webinar events, sync participant data with other platforms, and automate follow-up communications, providing a seamless bridge between your webinar activities and other business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
everwebinar: {
type: "app",
app: "everwebinar",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.everwebinar.$auth.api_key}`,
}
return await axios($, {
url: `https://api.webinarjam.com/everwebinar/webinars`,
data,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})