← HTTP / Webhook + BigCommerce integrations

Create Product with BigCommerce API on New Requests (Payload Only) from HTTP / Webhook API

Pipedream makes it easy to connect APIs for BigCommerce, HTTP / Webhook and 2,000+ other apps remarkably fast.

Trigger workflow on
New Requests (Payload Only) from the HTTP / Webhook 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 HTTP / Webhook 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 New Requests (Payload Only) trigger
    1. Connect your HTTP / Webhook account
  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
  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:Get a URL and emit the HTTP body as an event on every request
Version:0.1.1
Key:http-new-requests-payload-only

Trigger Code

import http from "../../http.app.mjs";

// Core HTTP component
// Returns a 200 OK response, emits the HTTP payload as an event
export default {
  key: "http-new-requests-payload-only",
  name: "New Requests (Payload Only)",
  // eslint-disable-next-line
  description: "Get a URL and emit the HTTP body as an event on every request",
  version: "0.1.1",
  type: "source",
  props: {
    // eslint-disable-next-line
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    http,
  },
  async run(event) {
    const { body } = event;
    this.httpInterface.respond({
      status: 200,
      body,
    });
    // Emit the HTTP payload
    this.$emit({
      body,
    });
  },
};

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
N/AhttpInterface$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Action

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

BigCommerce Overview

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!

Action Code

import bigcommerce from "../../bigcommerce.app.mjs";
import productProps from "../../common/product-props.mjs";

export default {
  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.2",
  type: "action",
  props: {
    bigcommerce,
    ...productProps,
  },
  async run({ $ }) {
    const {
      bigcommerce, ...props
    } = this;
    const response = await bigcommerce.createProduct({
      $,
      props,
    });

    $.export("$summary", `Successfully created product ${this.name}`);
    return response.data;
  },
};

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
BigCommercebigcommerceappThis 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.

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 Advanced Settings > API Accounts > Create API Account

  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 + HTTP / Webhook

Send any HTTP Request with HTTP / Webhook API on New Custom Events from BigCommerce API
BigCommerce + HTTP / Webhook
 
Try it
Send GET Request with HTTP / Webhook API on New Custom Events from BigCommerce API
BigCommerce + HTTP / Webhook
 
Try it
Send POST Request with HTTP / Webhook API on New Custom Events from BigCommerce API
BigCommerce + HTTP / Webhook
 
Try it
Send PUT Request with HTTP / Webhook API on New Custom Events from BigCommerce API
BigCommerce + HTTP / Webhook
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Customer from BigCommerce API
BigCommerce + HTTP / Webhook
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
New Custom Events from the BigCommerce API

Emit new custom webhook event

 
Try it
New Customer from the BigCommerce API

Emit new created customer

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP trigger that uses "Return a custom response from your workflow" as its HTTP Response

 
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
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.
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Filter
Filter
Specify a condition that your workflow must meet and whether you'd like to proceed or end workflow execution.
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.
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.
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
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.
Airtable (OAuth)
Airtable (OAuth)
Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
Zoom
Zoom
Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Gmail
Gmail
Gmail offers private and secure email by Google at no cost, for business and consumer accounts.
Gmail (Developer App)
Gmail (Developer App)
Private and secure email by Google at no cost, for business and consumer accounts. Use this app to connect your own developer account credentials.
Email
Email
Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Delay
Delay
Delay, pause, suspend, or have the execution of your workflow wait for as little as one millisecond, or as long as one year.
Go
Go
Anything you can do in Go, you can do in a Pipedream Workflow. You can use any of Go packages available with a simple import.
Premium
Zoom Admin
Zoom Admin
Video conferencing (includes account-level scopes) for Zoom Admins.
Twilio
Twilio
Twilio is a cloud communications platform for building SMS, Voice & Messaging applications on an API built for global scale.
Bash
Bash
Run any Bash in a Pipedream step within your workflow, including making curl requests.