with Evenium and The Official Board?
The Evenium API offers a toolkit for automating and integrating event management tasks into Pipedream's serverless platform. With the Evenium API, you can create workflows that automate event creation, attendee management, and real-time analytics tracking. This enables you to seamlessly synchronize event details with other apps, send personalized communications, and manage registrations with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
evenium: {
type: "app",
app: "evenium",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://secure.evenium.com/api/1/contacts`,
params: {
accessToken: `${this.evenium.$auth.access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
the_official_board: {
type: "app",
app: "the_official_board",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.theofficialboard.com/rest/test/token`,
headers: {
"accept": `application/json`,
"token": `${this.the_official_board.$auth.api_token}`,
},
})
},
})