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 siteThe HeySummit API lets you automate and integrate your event management tasks with ease. With this API, you can access attendee data, control event schedules, retrieve talk details, and more. By using Pipedream's serverless platform, you can construct workflows that trigger actions in other apps or services whenever specific events occur in HeySummit. This opens up a myriad of possibilities for event organizers to streamline processes, improve attendee engagement, and gain valuable insights from their events.
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}`,
},
})
},
})
Attendee Registration to Email Campaigns: When a new attendee registers for an event on HeySummit, automatically add them to an email marketing campaign on Mailchimp. This keeps participants engaged with regular updates and personalized content.
Speaker Coordination Workflow: Upon the addition of a new speaker to an event in HeySummit, trigger a sequence of tasks such as sending a welcome email through SendGrid, creating a task in Asana for the event coordinator, and updating a Google Sheet with the speaker's details for streamlined team coordination.
Post-Event Feedback Collection: After an event ends, automatically send a feedback survey link from Typeform to all attendees via Twilio SMS. This immediate request for feedback can lead to higher response rates and more valuable insights for future event improvements.
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.