AddEvent is the number #1 "Add to calendar" service on the Internet. We handle millions of events every year for businesses around the world
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Creates an RSVP for an attendee for a specific event. See the documentation
The 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}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS