Launch Darkly (Oauth)

Integrate the Launch Darkly (Oauth) API with the Zoom Admin API

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

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 meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it
Add webinar registrant with the Zoom Admin API

Register a participant for a webinar. See the docs here

 
Try it
Create a meeting with the Zoom Admin API

Create a new room in zoom. See the docs here

 
Try it
Create Webinar with the Zoom Admin API

Create a webinar for an user. See the docs here

 
Try it

Overview of Launch Darkly (Oauth)

With Launch Darkly, you can easily and quickly add feature flags to your
applications. This is particularly useful when you want to test out a new
feature with a small group of users first, or when you want to slowly rollout a
new feature to all of your users.

Launch Darkly also has an Oauth API, which allows you to easily add feature
flags to your applications using Oauth. This is particularly useful when you
want to test out a new feature with a small group of users first, or when you
want to slowly rollout a new feature to all of your users.

Some examples of what you can build with the Launch Darkly Oauth API include:

  • A feature flag management system
  • A system for easily rolling out new features to a small group of users
  • A system for slowly rolling out new features to all users

Connect Launch Darkly (Oauth)

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

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}`,
      },
    })
  },
})