BigCommerce

Ecommerce for a New Era

Integrate the BigCommerce API with the Zoom Admin API

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

Create Product with BigCommerce API on Account Created from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Delete Product with BigCommerce API on Account Created from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Get All Products Sort Order with BigCommerce API on Account Created from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Get All Products with BigCommerce API on Account Created from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Get Product By Id with BigCommerce API on Account Created from Zoom Admin API
Zoom Admin + BigCommerce
 
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
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
Create Product with the BigCommerce API

Create a product. See the docs here

 
Try it
Delete Product with the BigCommerce API

Delete a product by Id. See the docs here

 
Try it
Get All Products with the BigCommerce API

Get all your products. See the docs here

 
Try it
Get All Products Sort Order with the BigCommerce API

Get all your products. See the docs here

 
Try it
Get Product By Id with the BigCommerce API

Get a specific product by id. See the docs here

 
Try it

Overview of BigCommerce

The BigCommerce API lets you build eCommerce applications and integrations on top of the BigCommerce platform. With the API, you can:

  • Create and manage products
  • Create and manage customers
  • Create and manage orders
  • Create and manage coupons
  • Create and manage shipping methods
  • Create and manage payment methods
  • And much more!

Connect BigCommerce

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: {
    bigcommerce: {
      type: "app",
      app: "bigcommerce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.bigcommerce.com/stores/${this.bigcommerce.$auth.store_hash}/v3/catalog/summary`,
      headers: {
        "X-Auth-Token": `${this.bigcommerce.$auth.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}`,
      },
    })
  },
})