Video conferencing (includes account-level scopes) for Zoom Admins.
Creates or updates a contact based on email address within Flexmail. See the documentation
Adds a contact to an interest area. See the documentation
Performs unsubscribe operation for a contact. See the documentation
Register a participant for a meeting. See the docs here
The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.
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}`,
},
})
},
})
Flexmail API offers a way to automate your email marketing campaigns by allowing you to manage contacts, send out emails, and track results. With Pipedream's ability to integrate with hundreds of services, you can set up complex workflows that respond to events from various apps by updating contact lists, sending personalized content, or triggering sequences of marketing actions based on user behavior or data changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexmail: {
type: "app",
app: "flexmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexmail.eu`,
auth: {
username: `${this.flexmail.$auth.account_id}`,
password: `${this.flexmail.$auth.personal_access_token}`,
},
})
},
})