BaseLinker

Integrate your e-commerce workflow in one place.

Integrate the BaseLinker API with the Zoom Admin API

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

Create Or Update Inventory Product with BaseLinker API on Account Created from Zoom Admin API
Zoom Admin + BaseLinker
 
Try it
Create Order with BaseLinker API on Account Created from Zoom Admin API
Zoom Admin + BaseLinker
 
Try it
Delete Inventory Product with BaseLinker API on Account Created from Zoom Admin API
Zoom Admin + BaseLinker
 
Try it
Update Order Status with BaseLinker API on Account Created from Zoom Admin API
Zoom Admin + BaseLinker
 
Try it
Create Or Update Inventory Product with BaseLinker API on Custom Events from Zoom Admin API
Zoom Admin + BaseLinker
 
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
New Order Created from the BaseLinker API

Emit new event when a new order is created in BaseLinker. See the Documentation.

 
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
Create Or Update Inventory Product with the BaseLinker API

It allows you to add a new product to BaseLinker catalog. Entering the product with the ID updates previously saved product. See the Documentation.

 
Try it
Create Order with the BaseLinker API

It allows adding a new order to the BaseLinker order manager. See the Documentation.

 
Try it
Delete Inventory Product with the BaseLinker API

It allows you to remove the product from BaseLinker catalog. See the Documentation.

 
Try it
Update Order Status with the BaseLinker API

It allows you to change order status. See the Documentation.

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it

Overview of BaseLinker

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.

Connect BaseLinker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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,
    })
  },
})

Overview of Zoom Admin

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.

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