Livestorm

Powerful, end-to-end video engagement software for today's teams.

Integrate the Livestorm API with the Salesforce (REST API) API

Setup the Livestorm API trigger to run a workflow which integrates with the Salesforce (REST API) API. Pipedream's integration platform allows you to integrate Livestorm and Salesforce (REST API) remarkably fast. Free for developers.

Add Contact to Campaign with Salesforce (REST API) API on New Registrant from Livestorm API
Livestorm + Salesforce (REST API)
 
Try it
Add Contact to Campaign with Salesforce (REST API) API on Registrant Attended Webinar from Livestorm API
Livestorm + Salesforce (REST API)
 
Try it
Add Contact to Campaign with Salesforce (REST API) API on Registrant Did Not Attend from Livestorm API
Livestorm + Salesforce (REST API)
 
Try it
Add Contact to Campaign with Salesforce (REST API) API on Webinar Completed from Livestorm API
Livestorm + Salesforce (REST API)
 
Try it
Add Lead to Campaign with Salesforce (REST API) API on New Registrant from Livestorm API
Livestorm + Salesforce (REST API)
 
Try it
New Registrant from the Livestorm API

Emit new event when a new registrant is added. See the Documentation

 
Try it
Registrant Attended Webinar from the Livestorm API

Emit new event when a registrant attended a Livestorm webinar. See the Documentation

 
Try it
Registrant Did Not Attend from the Livestorm API

Emit new event when a registrant did not attend a Livestorm webinar. See the Documentation

 
Try it
Webinar Completed from the Livestorm API

Emit new event when a Livestorm webinar is completed. See the Documentation

 
Try it
New Deleted Record (Instant, of Selectable Type) from the Salesforce (REST API) API

Emit new event immediately after a record of arbitrary object type (selected as an input parameter by the user) is deleted

 
Try it
Create Event with the Livestorm API

Create a new event. See the Documentation

 
Try it
Add Contact to Campaign with the Salesforce (REST API) API

Adds an existing contact to an existing campaign. See Event SObject and Create Record

 
Try it
Get Event with the Livestorm API

Retrieve a single event. See the Documentation

 
Try it
Add Lead to Campaign with the Salesforce (REST API) API

Adds an existing lead to an existing campaign. See Event SObject and Create Record

 
Try it
List Attendees From Event with the Livestorm API

List all the people linked to all the sessions of an event. See the Documentation

 
Try it

Overview of Livestorm

The Livestorm API opens up a world of possibilities for event management automation. With this API, you can harness data from your webinars and online events to drive engagement, personalize follow-ups, and streamline event operations. Integrating Livestorm with Pipedream allows you to construct workflows that can react to event triggers, sync data across platforms, and automate repetitive tasks. Whether you're looking to enhance participant engagement, capture leads in your CRM, or trigger personalized email campaigns post-event, Pipedream's serverless platform makes it easy to connect Livestorm with other apps and services.

Connect Livestorm

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: {
    livestorm: {
      type: "app",
      app: "livestorm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.livestorm.co/v1/events`,
      headers: {
        Authorization: `Bearer ${this.livestorm.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Salesforce (REST API)

The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.

Connect Salesforce (REST API)

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: {
    salesforce_rest_api: {
      type: "app",
      app: "salesforce_rest_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`,
      headers: {
        Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`,
      },
    })
  },
})