with HeySummit and RunSignup?
The 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
runsignup: {
type: "app",
app: "runsignup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://runsignup.com/Rest/v2/auth-info/entity-info.json`,
headers: {
"x-rsu-api-secret": `${this.runsignup.$auth.api_secret}`,
},
params: {
rsu_api_key: `${this.runsignup.$auth.api_key}`,
},
})
},
})