Eventzilla is a leading cloud-based event registration & marketing platform with thousands of users worldwide. We make it easy for event organizers to create a beautiful, professional web presence to promote their live or virtual events.
Go to siteWith Eventzilla, you can easily craft beautiful event pages and manage registrations with ease.
Here are some examples of what you can build with Eventzilla:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eventzilla: {
type: "app",
app: "eventzilla",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.eventzillaapi.net/api/v2/users`,
headers: {
"x-api-key": `${this.eventzilla.$auth.api_key}`,
},
})
},
})
Eventzilla uses API keys for authentication. When you connect your Eventzilla account, Pipedream securely stores the keys so you can easily authenticate to Eventzilla APIs in both code and no-code steps.
To get started using Eventzilla API, generate your own application x-api-key in the API Credentials page.