ActiveCampaign

ActiveCampaign is the email marketing, marketing automation, and CRM suite you need to create incredible customer experiences.

Integrate the ActiveCampaign API with the Zoom Admin API

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

Activecampaign - Get contact by email with ActiveCampaign API on Account Created from Zoom Admin API
Zoom Admin + ActiveCampaign
 
Try it
ActiveCampaign - Remove Contact Tag with ActiveCampaign API on Account Created from Zoom Admin API
Zoom Admin + ActiveCampaign
 
Try it
Add Contact to Automation with ActiveCampaign API on Account Created from Zoom Admin API
Zoom Admin + ActiveCampaign
 
Try it
Create Account with ActiveCampaign API on Account Created from Zoom Admin API
Zoom Admin + ActiveCampaign
 
Try it
Create Contact with ActiveCampaign API on Account Created from Zoom Admin API
Zoom Admin + ActiveCampaign
 
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
Add Contact to Automation with the ActiveCampaign API

Adds an existing contact to an existing automation. See the docs here.

 
Try it
Create Account with the ActiveCampaign API

Create a new account. See the docs here.

 
Try it
Create Contact with the ActiveCampaign API

Create a new contact. See the documentation.

 
Try it
Create Deal with the ActiveCampaign API

Creates a new deal. See the docs here.

 
Try it
Create Note with the ActiveCampaign API

Adds a note, arbitrary information to a contact, deal, or other Active Campaign objects. See the docs here.

 
Try it

Overview of ActiveCampaign

With ActiveCampaign's API, you can build a variety of integrations and
applications to help streamline your business. Here are just a few examples:

  • A contact importer that pulls in your contacts from another CRM or email
    service
  • A webhook that automatically updates your ActiveCampaign lists when someone
    subscribes or unsubscribes from your website
  • An integration that allows you to send SMS messages through ActiveCampaign
  • A geolocation tool that tracks where your contacts are located
  • And much more!

Connect ActiveCampaign

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: {
    activecampaign: {
      type: "app",
      app: "activecampaign",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.activecampaign.$auth.base_url}/api/3/accounts`,
      headers: {
        "Api-Token": `${this.activecampaign.$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}`,
      },
    })
  },
})