HeySummit is the best way to run virtual summits. From online marketers to brands, to think-tanks, HeySummit powers some of the world's most interesting summits.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
HeySummit allows you to build a variety of online events, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heysummit: {
type: "app",
app: "heysummit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.heysummit.com/api/events/`,
headers: {
"Authorization": `Token ${this.heysummit.$auth.api_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})