← Zoom Admin + BigCommerce integrations

Create Product with BigCommerce API on Account Created from Zoom Admin API

Pipedream makes it easy to connect APIs for BigCommerce, Zoom Admin and 2,000+ other apps remarkably fast.

Trigger workflow on
Account Created from the Zoom Admin API
Next, do this
Create Product with the BigCommerce API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
4 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Zoom Admin trigger and BigCommerce action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Account Created trigger
    1. Connect your Zoom Admin account
    2. Configure zoomApphook
  3. Configure the Create Product action
    1. Connect your BigCommerce account
    2. Configure Name
    3. Select a Type
    4. Optional- Configure SKU
    5. Optional- Configure Description
    6. Configure Weight
    7. Optional- Configure Width
    8. Optional- Configure Depth
    9. Optional- Configure Height
    10. Configure Price
    11. Optional- Configure Cost Price
    12. Optional- Configure Retail Price
    13. Optional- Configure Sale Price
    14. Optional- Configure Map Price
    15. Optional- Select a Tax class id
    16. Optional- Configure Product tax code
    17. Optional- Select one or more Categories
    18. Optional- Select a Brand Id
    19. Optional- Configure Inventory Level
    20. Optional- Configure Inventory Warning Level
    21. Optional- Select a Inventory Tracking
    22. Optional- Configure Fixed cost shipping price
    23. Optional- Configure Is free shipping
    24. Optional- Configure Is visible
    25. Optional- Configure Is Featured
    26. Optional- Select one or more Related Products
    27. Optional- Configure Warranty
    28. Optional- Configure Bin picking number
    29. Optional- Configure Layout File
    30. Optional- Configure UPC
    31. Optional- Configure Seach keywords
    32. Optional- Select a Availability
    33. Optional- Configure Availability description
    34. Optional- Select a Gift wrapping options type
    35. Optional- Configure Gift wrapping options list
    36. Optional- Configure Sort order
    37. Optional- Select a Condition
    38. Optional- Configure Is condition shown
    39. Optional- Configure Order quantity minimum
    40. Optional- Configure Order quantity maximum
    41. Optional- Configure Page title
    42. Optional- Configure Meta keywords
    43. Optional- Configure Meta description
    44. Optional- Configure View count
    45. Optional- Configure Preorder release date
    46. Optional- Configure Preorder message
    47. Optional- Configure Is preorder only
    48. Optional- Configure Is preorder hidden
    49. Optional- Configure Price hidden label
    50. Optional- Select a Open graph type
    51. Optional- Configure Open graph title
    52. Optional- Configure Open graph description
    53. Optional- Configure Open graph use meta description
    54. Optional- Configure Open graph use product name
    55. Optional- Configure Open graph use image
    56. Optional- Configure Brand name
    57. Optional- Configure GTIN
    58. Optional- Configure MPN
    59. Optional- Configure Reviews rating sum
    60. Optional- Configure Reviews count
    61. Optional- Configure Total sold
    62. Optional- Configure Images
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emits an event each time a sub-account is created in your master account
Version:0.1.3
Key:zoom_admin-account-created

Zoom Admin Overview

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.

Trigger Code

import zoomAdmin from "../../zoom_admin.app.mjs";

export default {
  key: "zoom_admin-account-created",
  type: "source",
  name: "Account Created",
  description: "Emits an event each time a sub-account is created in your master account",
  version: "0.1.3",
  dedupe: "unique", // Dedupe based on account ID
  props: {
    zoomAdmin,
    zoomApphook: {
      type: "$.interface.apphook",
      appProp: "zoomAdmin",
      eventNames: [
        "account.created",
      ],
    },
  },
  async run(event) {
    console.log(event);
    const { id } = event.payload.object;
    this.$emit(event, {
      summary: `New sub-account ${id} created`,
      id,
    });
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Zoom AdminzoomAdminappThis component uses the Zoom Admin app.
zoomApphook$.interface.apphook

Trigger Authentication

Zoom Admin uses OAuth authentication. When you connect your Zoom Admin account, Pipedream will open a popup window where you can sign into Zoom Admin and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoom Admin API.

Pipedream requests the following authorization scopes when you connect your account:

About Zoom Admin

Video conferencing (includes account-level scopes) for Zoom Admins.

Action

Description:Create a product. [See the docs here](https://developer.bigcommerce.com/api-reference/366928572e59e-create-a-product)
Version:0.0.3
Key:bigcommerce-create-product

BigCommerce Overview

The BigCommerce API enables merchants to seamlessly manage their e-commerce operations by automating tasks, syncing data, and integrating with a plethora of other services. With Pipedream, you can tap into the BigCommerce API to create custom workflows that handle everything from order processing to customer relationship management. The result is a more efficient, personalized shopping experience for customers and less manual work for store owners.

Action Code

import common from "../common/product.mjs";

export default {
  ...common,
  key: "bigcommerce-create-product",
  name: "Create Product",
  description:
    "Create a product. [See the docs here](https://developer.bigcommerce.com/api-reference/366928572e59e-create-a-product)",
  version: "0.0.3",
  type: "action",
  methods: {
    ...common.methods,
    createProduct(args = {}) {
      return this.app._makeRequest({
        method: "POST",
        path: "/catalog/products",
        ...args,
      });
    },
    getRequestFn() {
      return this.createProduct;
    },
    getRequestFnArgs(args = {}) {
      return args;
    },
    getSummary(response) {
      return `Successfully created product with ID \`${response.data.id}\``;
    },
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
BigCommerceappappThis component uses the BigCommerce app.
Namenamestring

The product name. >= 1 characters <= 250 characters

TypetypestringSelect a value from the drop down menu:physicaldigital
SKUskustring

User defined product code/stock keeping unit (SKU). >= 0 characters <= 255 characters Example: SM-13

Descriptiondescriptionstring

The product description, which can include HTML formatting.

Weightweightany

Weight of the product, which can be used when calculating shipping costs. This is based on the unit set on the store >= 0 and <= 9999999999

Widthwidthany

Width of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Depthdepthany

Depth of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Heightheightany

Height of the product, which can be used when calculating shipping costs. >= 0 and <= 9999999999

Pricepriceany

The price of the product. The price should include or exclude tax, based on the store settings. >= 0

Cost Pricecost_priceany

The cost price of the product. Stored for reference only; it is not used or displayed anywhere on the store. >=0

Retail Priceretail_priceany

The retail cost of the product. If entered, the retail cost price will be shown on the product page. >=0

Sale Pricesale_priceany

If entered, the sale price will be used instead of value in the price field when calculating the product's cost. >=0

Map Pricemap_priceinteger

Minimum Advertised Price

Tax class idtax_class_idintegerSelect a value from the drop down menu.
Product tax codeproduct_tax_codestring

Accepts AvaTax System Tax Codes, which identify products and services that fall into special sales-tax categories. By using these codes, merchants who subscribe to BigCommerce's Avalara Premium integration can calculate sales taxes more accurately. Stores without Avalara Premium will ignore the code when calculating sales tax. Do not pass more than one code. The codes are case-sensitive. For details, please see Avalara's documentation. >= 0 characters <= 255 characters

Categoriescategoriesinteger[]Select a value from the drop down menu.
Brand Idbrand_idintegerSelect a value from the drop down menu.
Inventory Levelinventory_levelinteger

Current inventory level of the product. Simple inventory tracking must be enabled (See the inventory_tracking field) for this to take any effect. >= 0 and <= 1000000000

Inventory Warning Levelinventory_warning_levelinteger

Inventory warning level for the product. When the product's inventory level drops below the warning level, the store owner will be informed. Simple inventory tracking must be enabled (see the inventory_tracking field) for this to take any effect. >= 0 and <= 1000000000

Inventory Trackinginventory_trackingstringSelect a value from the drop down menu:noneproductvariant
Fixed cost shipping pricefixed_cost_shipping_priceany

A fixed shipping cost for the product. If defined, this value will be used during checkout instead of normal shipping-cost calculation. >= 0

Is free shippingis_free_shippingboolean

Flag used to indicate whether the product has free shipping. If true, the shipping cost for the product will be zero.

Is visibleis_visibleboolean

Flag to determine whether the product should be displayed to customers browsing the store. If true, the product will be displayed. If false, the product will be hidden from view.

Is Featuredis_featuredboolean

Flag to determine whether the product should be included in the featured products panel when viewing the store.

Related Productsrelated_productsinteger[]Select a value from the drop down menu.
Warrantywarrantystring

Warranty information displayed on the product page. Can include HTML formatting. >= 0 characters and <= 65535 characters

Bin picking numberbin_picking_numberstring

The BIN picking number for the product. >= 0 characters and <= 255 characters

Layout Filelayout_filestring

The layout template file used to render this product category. This field is writable only for stores with a Blueprint theme applied. >= 0 characters and <= 500 characters

UPCupcstring

The product UPC code, which is used in feeds for shopping comparison sites and external channel integrations. >= 0 characters and <= 255 characters

Seach keywordssearch_keywordsstring

A comma-separated list of keywords that can be used to locate the product when searching the store. >= 0 characters and <= 65535 characters

AvailabilityavailabilitystringSelect a value from the drop down menu:availabledisabledpreorder
Availability descriptionavailability_descriptionstring

Availability text displayed on the checkout page, under the product title. Tells the customer how long it will normally take to ship this product, such as: 'Usually ships in 24 hours.' >= 0 characters and <= 255 characters

Gift wrapping options typegift_wrapping_options_typestringSelect a value from the drop down menu:anynonelist
Gift wrapping options listgift_wrapping_options_liststring[]

A list of gift-wrapping option IDs.

Sort ordersort_orderinteger

Priority to give this product when included in product lists on category pages and in search results. Lower integers will place the product closer to the top of the results. >= -2147483648 and <= 2147483647

ConditionconditionstringSelect a value from the drop down menu:NewUsedRefurbished
Is condition shownis_condition_shownboolean

Flag used to determine whether the product condition is shown to the customer on the product page.

Order quantity minimumorder_quantity_minimuminteger

The minimum quantity an order must contain, to be eligible to purchase this product. >= 0 and <= 1000000000

Order quantity maximumorder_quantity_maximuminteger

The maximum quantity an order can contain when purchasing the product. >= 0 and <= 1000000000

Page titlepage_titlestring

Custom title for the product page. If not defined, the product name will be used as the meta title. >= 0 characters and <= 255 characters

Meta keywordsmeta_keywordsstring[]

Custom meta keywords for the product page. If not defined, the store's default keywords will be used.

Meta descriptionmeta_descriptionstring

Custom meta description for the product page. If not defined, the store's default meta description will be used. >= 0 characters and <= 65535 characters

View countview_countinteger

The number of times the product has been viewed. >= 0 and <= 1000000000

Preorder release datepreorder_release_datestring

Pre-order release date. See the availability field for details on setting a product's availability to accept pre-orders.

Preorder messagepreorder_messagestring

Custom expected-date message to display on the product page. If undefined, the message defaults to the storewide setting. Can contain the %%DATE%% placeholder, which will be substituted for the release date. >= 0 characters and <= 255 characters

Is preorder onlyis_preorder_onlyboolean

If set to true then on the preorder release date the preorder status will automatically be removed. If set to false, then on the release date the preorder status will not be removed. It will need to be changed manually either in the control panel or using the API. Using the API set availability to available.

Is preorder hiddenis_price_hiddenboolean

False by default, indicating that this product's price should be shown on the product page. If set to true, the price is hidden. (NOTE: To successfully set is_price_hidden to true, the availability value must be disabled.)

Price hidden labelprice_hidden_labelstring

By default, an empty string. If is_price_hidden is true, the value of price_hidden_label is displayed instead of the price. (NOTE: To successfully set a non-empty string value with is_price_hidden set to true, the availability value must be disabled.) >= 0 characters and <= 200 characters

Open graph typeopen_graph_typestringSelect a value from the drop down menu:productalbumbookdrinkfoodgamemoviesongtv_show
Open graph titleopen_graph_titlestring

Title of the product, if not specified the product name will be used instead.

Open graph descriptionopen_graph_descriptionstring

Description to use for the product, if not specified then the meta_description will be used instead.

Open graph use meta descriptionopen_graph_use_meta_descriptionboolean

Flag to determine if product description or open graph description is used.

Open graph use product nameopen_graph_use_product_nameboolean

Flag to determine if product name or open graph name is used.

Open graph use imageopen_graph_use_imageboolean

Flag to determine if product image or open graph image is used.

Brand namebrand_namestring

It performs a fuzzy match and adds the brand. eg. "Common Good" and "Common good" are the same. Brand name does not return as part of a product response. Only the brand_id.

GTINgtinstring

Global Trade Item Number

MPNmpnstring

Manufacturer Part Number

Reviews rating sumreviews_rating_sumany

The total rating for the product.

Reviews countreviews_countinteger

The number of times the product has been rated.

Total soldtotal_soldinteger

The total quantity of this product sold.

Imagesimagesstring[]

Array of image strings. They can be either local paths or URLs. Limit of 8MB per file. If it is a URL it has a 255 character limit. Supported image file types are BMP, GIF, JPEG, PNG, WBMP, XBM, and WEBP. If it is a local path it should be previously downloaded to Pipedream E.g. (/tmp/my-image.png). Download a file to the /tmp directory

Action Authentication

BigCommerce uses API keys for authentication. When you connect your BigCommerce account, Pipedream securely stores the keys so you can easily authenticate to BigCommerce APIs in both code and no-code steps.

  1. Navigate to Settings > API > Store-level API accounts

  2. Name the account (it will only be visible to store users)

  3. In the OAuth Scopes section, select the minimum scopes the app will require

  4. Press Save.

The base API path will look something like this: https://api.bigcommerce.com/stores/123456/

In example above, the store_hash is 123456. Enter this and the access token below.

About BigCommerce

Ecommerce for a New Era

More Ways to Connect BigCommerce + Zoom Admin

Create Product with BigCommerce API on Account Settings Updated from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Create Product with BigCommerce API on Account Updated from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Create Product with BigCommerce API on Meeting Created from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Create Product with BigCommerce API on Meeting Deleted from Zoom Admin API
Zoom Admin + BigCommerce
 
Try it
Create Product with BigCommerce API on Meeting Ended 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
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it
Add webinar registrant with the Zoom Admin API

Register a participant for a webinar. See the docs here

 
Try it
Create a meeting with the Zoom Admin API

Create a new room in zoom. See the docs here

 
Try it
Create Webinar with the Zoom Admin API

Create a webinar for an user. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Snowflake
Snowflake
A data warehouse built for the cloud
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.