with Evenium and Dynamic Content Snippet?
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: {
dynamic_content_snippet: {
type: "app",
app: "dynamic_content_snippet",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.contentsnip.com/api/mappings`,
headers: {
"x-api-key": `${this.dynamic_content_snippet.$auth.api_key}`,
},
})
},
})