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}`,
},
})
},
})
Emit new event when a new participant (guest) is added to an event. See the documentation
Evenium uses API keys for authentication. When you connect your Evenium account, Pipedream securely stores the keys so you can easily authenticate to Evenium APIs in both code and no-code steps.
You can find your access token on API Key under the Profile menu on the top right of your Evenium account.