Video conferencing (includes account-level scopes) for Zoom Admins.
Emits an event each time a sub-account is created in your master account
Emits an event each time a meeting starts in your Zoom account
Emit new event when a new campaign event occurs.
Emits an event each time your master account or sub-account profile is updated
Displays a list of contacts in Postalytics. See the documentation
Send a postcard or letter with the capability of tracking delivery and response. 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}`,
},
})
},
})
The Postalytics API lets you automate direct mail marketing campaigns, manage contacts, and track results. By integrating Postalytics with Pipedream, you can build serverless workflows that leverage your marketing stack, sync data across platforms, and personalize your outreach efforts. You can trigger direct mail pieces based on customer behavior, update your CRM with mailing results, or create custom analytics dashboards.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
postalytics: {
type: "app",
app: "postalytics",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.postalytics.com/api/v1/contacts`,
auth: {
username: `${this.postalytics.$auth.api_key}`,
password: ``,
},
})
},
})