@robinpath/bigcommerce
v0.1.1
Published
> BigCommerce module for RobinPath.
Keywords
Readme
@robinpath/bigcommerce
BigCommerce module for RobinPath.
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/bigcommerceQuick Start
1. Set up credentials
bigcommerce.setCredentials "your-credentials"2. listProducts
bigcommerce.listProductsAvailable Functions
| Function | Description |
|----------|-------------|
| bigcommerce.setCredentials | Configure bigcommerce credentials. |
| bigcommerce.listProducts | listProducts |
| bigcommerce.getProduct | getProduct |
| bigcommerce.createProduct | createProduct |
| bigcommerce.updateProduct | updateProduct |
| bigcommerce.deleteProduct | deleteProduct |
| bigcommerce.listOrders | listOrders |
| bigcommerce.getOrder | getOrder |
| bigcommerce.updateOrder | updateOrder |
| bigcommerce.listCustomers | listCustomers |
| bigcommerce.getCustomer | getCustomer |
| bigcommerce.createCustomer | createCustomer |
| bigcommerce.updateCustomer | updateCustomer |
| bigcommerce.listCategories | listCategories |
| bigcommerce.createCategory | createCategory |
| bigcommerce.listBrands | listBrands |
| bigcommerce.createBrand | createBrand |
| bigcommerce.getOrderProducts | getOrderProducts |
| bigcommerce.getStoreInfo | getStoreInfo |
| bigcommerce.listChannels | listChannels |
| bigcommerce.getOrderShipments | getOrderShipments |
Examples
listProducts
bigcommerce.listProductsgetProduct
bigcommerce.getProductcreateProduct
bigcommerce.createProductIntegration 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
@robinpath/shopify— Shopify module for complementary functionality@robinpath/woocommerce— WooCommerce module for complementary functionality@robinpath/square— Square module for complementary functionality@robinpath/json— JSON module for complementary functionality
License
MIT
