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.
Go to siteHeySummit 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}`,
},
})
},
})
HeySummit uses API keys for authentication. When you connect your HeySummit account, Pipedream securely stores the keys so you can easily authenticate to HeySummit APIs in both code and no-code steps.
You can get your API Token Event setup > API settings when signed into your HeySummit account.