with Evenium and changes.page?
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: {
changes_page: {
type: "app",
app: "changes_page",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.changes_page.$auth.subdomain}.changes.page/latest.json`,
})
},
})