🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@robinpath/bigcommerce

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@robinpath/bigcommerce

BigCommerce REST API — products, orders, customers, categories, brands, inventory, carts, and webhooks. Uses the encrypted credential vault for the per-store access token and store hash.

latest
npmnpm
Version
0.3.0
Version published
Weekly downloads
51
-54.87%
Maintainers
4
Weekly downloads
 
Created
Source

@robinpath/bigcommerce

BigCommerce module for RobinPath.

Category Functions Auth License

Why use this module?

The bigcommerce module lets you:

  • listProducts
  • getProduct
  • createProduct
  • updateProduct
  • deleteProduct

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

robinpath add @robinpath/bigcommerce

Quick Start

1. Set up credentials

bigcommerce.setCredentials "your-credentials"

2. listProducts

bigcommerce.listProducts

Available Functions

FunctionDescription
bigcommerce.setCredentialsConfigure bigcommerce credentials.
bigcommerce.listProductslistProducts
bigcommerce.getProductgetProduct
bigcommerce.createProductcreateProduct
bigcommerce.updateProductupdateProduct
bigcommerce.deleteProductdeleteProduct
bigcommerce.listOrderslistOrders
bigcommerce.getOrdergetOrder
bigcommerce.updateOrderupdateOrder
bigcommerce.listCustomerslistCustomers
bigcommerce.getCustomergetCustomer
bigcommerce.createCustomercreateCustomer
bigcommerce.updateCustomerupdateCustomer
bigcommerce.listCategorieslistCategories
bigcommerce.createCategorycreateCategory
bigcommerce.listBrandslistBrands
bigcommerce.createBrandcreateBrand
bigcommerce.getOrderProductsgetOrderProducts
bigcommerce.getStoreInfogetStoreInfo
bigcommerce.listChannelslistChannels
bigcommerce.getOrderShipmentsgetOrderShipments

Examples

listProducts

bigcommerce.listProducts

getProduct

bigcommerce.getProduct

createProduct

bigcommerce.createProduct

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/bigcommerce";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  bigcommerce.setCredentials "your-credentials"
  bigcommerce.listProducts
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

License

MIT

Keywords

bigcommerce

FAQs

Package last updated on 06 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts