addevent

AddEvent is the number #1 "Add to calendar" service on the Internet. We handle millions of events every year for businesses around the world

Integrate the addevent API with the ServiceNow API

Setup the addevent API trigger to run a workflow which integrates with the ServiceNow API. Pipedream's integration platform allows you to integrate addevent and ServiceNow remarkably fast. Free for developers.

Create Table Record with ServiceNow API on New Calendar Subscriber from addevent API
addevent + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New RSVP Attendee from addevent API
addevent + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Calendar Subscriber from addevent API
addevent + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New RSVP Attendee from addevent API
addevent + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Calendar Subscriber from addevent API
addevent + ServiceNow
 
Try it
New Calendar Subscriber from the addevent API

Emit new event when a new subscriber is added to a calendar.

 
Try it
New RSVP Attendee from the addevent API

Emit new event when a new attendee RSVPs to your event

 
Try it
Create Event with the addevent API

Creates a new instance of an event. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create RSVP For Attendee with the addevent API

Creates an RSVP for an attendee for a specific event. See the documentation

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
Try it
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it

Overview of addevent

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.

Connect addevent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance operational efficiencies.

Connect ServiceNow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})