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
Emits an event each time your master account or sub-account profile is updated
Emit new event when a new order is created in BaseLinker. See the Documentation.
It allows you to add a new product to BaseLinker catalog. Entering the product with the ID updates previously saved product. See the Documentation.
It allows adding a new order to the BaseLinker order manager. See the Documentation.
It allows you to remove the product from BaseLinker catalog. See the Documentation.
It allows you to change order status. 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 BaseLinker API offers access to a suite of e-commerce management tools, enabling seamless integration of orders, products, and inventory across various online sales channels. With Pipedream's ability to connect APIs, you can automate tasks between BaseLinker and other apps to streamline your e-commerce operations, from syncing inventory to processing orders.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
baselinker: {
type: "app",
app: "baselinker",
}
},
async run({steps, $}) {
const data = {
"method": `getInventories`,
}
return await axios($, {
method: "post",
url: `https://api.baselinker.com/connector.php`,
headers: {
"X-BLToken": `${this.baselinker.$auth.api_key}`,
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})