AddEvent is the number #1 "Add to calendar" service on the Internet. We handle millions of events every year for businesses around the world
Go to siteThe AddEvent API enables automation of calendar event management. With it, you can create events, list upcoming events, and manage RSVPs. It’s useful for organizations that schedule multiple events and need to streamline their event-creation process, send out invitations, and track attendee responses. On Pipedream, you can build workflows that trigger on various events to connect AddEvent with other apps, creating a seamless event-management experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
addevent: {
type: "app",
app: "addevent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.addevent.com/api/v1/me/calendars/list/`,
params: {
token: `${this.addevent.$auth.api_token}`,
},
})
},
})
Automated Event Creation from Webhooks: Automate the creation of calendar events on AddEvent whenever a webhook is received. This is useful for adding events from an external trigger, like a form submission or a ticket purchase.
RSVP Tracking with Google Sheets: Sync AddEvent RSVPs to a Google Sheet to track attendees. This workflow is perfect for event coordinators who need a dynamic attendee list that updates in real-time as RSVPs come in.
Event Reminder Emails via SendGrid: Set up a workflow that sends reminder emails to attendees using SendGrid a day before the event starts. This helps reduce no-shows and keeps your event top-of-mind for participants.
Creates an RSVP for an attendee for a specific event. See the documentation
addevent uses API keys for authentication. When you connect your addevent account, Pipedream securely stores the keys so you can easily authenticate to addevent APIs in both code and no-code steps.
To retrieve your API token,