GetResponse

Trusted Inbound Marketing Software

Integrate the GetResponse API with the Zoom Admin API

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

Create Contact with GetResponse API on Account Created from Zoom Admin API
Zoom Admin + GetResponse
 
Try it
Create Newsletter with GetResponse API on Account Created from Zoom Admin API
Zoom Admin + GetResponse
 
Try it
Create or Update Contact with GetResponse API on Account Created from Zoom Admin API
Zoom Admin + GetResponse
 
Try it
Find Campaign List with GetResponse API on Account Created from Zoom Admin API
Zoom Admin + GetResponse
 
Try it
Find Contact with GetResponse API on Account Created from Zoom Admin API
Zoom Admin + GetResponse
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Create Contact with the GetResponse API

Creates a contact. See the docs here

 
Try it
Create Newsletter with the GetResponse API

Creates a new newsletter and puts it in a queue to send. See the docs here

 
Try it
Create or Update Contact with the GetResponse API

Creates or updates a contact if already exists. See the docs here

 
Try it
Find Campaign List with the GetResponse API

Finds a campaign list by filters. See the docs here

 
Try it
Find Contact with the GetResponse API

Finds a contact by filters. See the docs here

 
Try it

Overview of GetResponse

The GetResponse API allows developers to access and manage GetResponse account
data and campaign statistics. Using the API, you can create and manage
campaigns, subscribers, and segmentations. You can also access campaign
analytics and deliver emails to subscribers.

Connect GetResponse

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: {
    getresponse: {
      type: "app",
      app: "getresponse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.getresponse.com/v3/accounts`,
      headers: {
        "X-Auth-Token": `api-key ${this.getresponse.$auth.api_key}`,
      },
    })
  },
})

Connect Zoom Admin

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: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})