Modules@robinpath/bigcommerce

@robinpath/bigcommerce

0.1.1Public

BigCommerce module for RobinPath.

@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

npm install @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.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.1latestyesterday
Install
$ robinpath install @robinpath/bigcommerce
Version0.1.1
LicenseMIT
Unpacked Size4.7 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

sales