productivity
BigCommerce CLI for AI Agents
Use the BigCommerce CLI from KosmoKrator to call BigCommerce tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.BigCommerce CLI Setup
BigCommerce can be configured headlessly with `kosmokrator integrations:configure bigcommerce`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure bigcommerce --set access_token="$BIGCOMMERCE_ACCESS_TOKEN" --set store_hash="$BIGCOMMERCE_STORE_HASH" --enable --read allow --write ask --json
kosmokrator integrations:doctor bigcommerce --json
kosmokrator integrations:status --json Credentials
Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
access_token | BIGCOMMERCE_ACCESS_TOKEN | Secret secret | yes | Access Token |
store_hash | BIGCOMMERCE_STORE_HASH | Text string | yes | Store Hash |
base_url | BIGCOMMERCE_BASE_URL | URL url | no | Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call bigcommerce.bigcommerce_list_products '{}' --json kosmo integrations:bigcommerce bigcommerce_list_products '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs bigcommerce --json
kosmo integrations:docs bigcommerce.bigcommerce_list_products --json
kosmo integrations:schema bigcommerce.bigcommerce_list_products --json
kosmo integrations:search "BigCommerce" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
bigcommerce.bigcommerce_list_products
List catalog products with BigCommerce v3 filters.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_products '{}' --json kosmo integrations:bigcommerce bigcommerce_list_products '{}' --json bigcommerce.bigcommerce_get_product
Get one catalog product by ID.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product '{}' --json bigcommerce.bigcommerce_create_product
Create a catalog product.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product '{}' --json bigcommerce.bigcommerce_update_product
Update a catalog product.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product '{}' --json bigcommerce.bigcommerce_delete_product
Delete a catalog product.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product '{}' --json bigcommerce.bigcommerce_list_product_variants
List variants for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_variants '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_variants '{}' --json bigcommerce.bigcommerce_get_product_variant
Get one product Variant.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_variant '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_variant '{}' --json bigcommerce.bigcommerce_create_product_variant
Create a product Variant.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_variant '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_variant '{}' --json bigcommerce.bigcommerce_update_product_variant
Update a product Variant.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_variant '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_variant '{}' --json bigcommerce.bigcommerce_delete_product_variant
Delete a product Variant.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_variant '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_variant '{}' --json bigcommerce.bigcommerce_list_product_images
List images for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_images '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_images '{}' --json bigcommerce.bigcommerce_get_product_image
Get one product Image.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_image '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_image '{}' --json bigcommerce.bigcommerce_create_product_image
Create a product Image.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_image '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_image '{}' --json bigcommerce.bigcommerce_update_product_image
Update a product Image.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_image '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_image '{}' --json bigcommerce.bigcommerce_delete_product_image
Delete a product Image.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_image '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_image '{}' --json bigcommerce.bigcommerce_list_product_custom_fields
List custom-fields for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_custom_fields '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_custom_fields '{}' --json bigcommerce.bigcommerce_get_product_custom_field
Get one product Custom Field.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_custom_field '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_custom_field '{}' --json bigcommerce.bigcommerce_create_product_custom_field
Create a product Custom Field.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_custom_field '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_custom_field '{}' --json bigcommerce.bigcommerce_update_product_custom_field
Update a product Custom Field.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_custom_field '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_custom_field '{}' --json bigcommerce.bigcommerce_delete_product_custom_field
Delete a product Custom Field.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_custom_field '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_custom_field '{}' --json bigcommerce.bigcommerce_list_product_modifiers
List modifiers for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_modifiers '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_modifiers '{}' --json bigcommerce.bigcommerce_get_product_modifier
Get one product Modifier.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_modifier '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_modifier '{}' --json bigcommerce.bigcommerce_create_product_modifier
Create a product Modifier.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_modifier '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_modifier '{}' --json bigcommerce.bigcommerce_update_product_modifier
Update a product Modifier.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_modifier '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_modifier '{}' --json bigcommerce.bigcommerce_delete_product_modifier
Delete a product Modifier.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_modifier '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_modifier '{}' --json bigcommerce.bigcommerce_list_product_options
List options for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_options '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_options '{}' --json bigcommerce.bigcommerce_get_product_option
Get one product Option.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_option '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_option '{}' --json bigcommerce.bigcommerce_create_product_option
Create a product Option.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_option '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_option '{}' --json bigcommerce.bigcommerce_update_product_option
Update a product Option.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_option '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_option '{}' --json bigcommerce.bigcommerce_delete_product_option
Delete a product Option.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_option '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_option '{}' --json bigcommerce.bigcommerce_list_product_videos
List videos for a catalog product.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_product_videos '{}' --json kosmo integrations:bigcommerce bigcommerce_list_product_videos '{}' --json bigcommerce.bigcommerce_get_product_video
Get one product Video.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_product_video '{}' --json kosmo integrations:bigcommerce bigcommerce_get_product_video '{}' --json bigcommerce.bigcommerce_create_product_video
Create a product Video.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_product_video '{}' --json kosmo integrations:bigcommerce bigcommerce_create_product_video '{}' --json bigcommerce.bigcommerce_update_product_video
Update a product Video.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_product_video '{}' --json kosmo integrations:bigcommerce bigcommerce_update_product_video '{}' --json bigcommerce.bigcommerce_delete_product_video
Delete a product Video.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_product_video '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_product_video '{}' --json bigcommerce.bigcommerce_list_categories
List BigCommerce Categorys.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_categories '{}' --json kosmo integrations:bigcommerce bigcommerce_list_categories '{}' --json bigcommerce.bigcommerce_get_category
Get one BigCommerce Category.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_category '{}' --json kosmo integrations:bigcommerce bigcommerce_get_category '{}' --json bigcommerce.bigcommerce_create_category
Create a BigCommerce Category.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_category '{}' --json kosmo integrations:bigcommerce bigcommerce_create_category '{}' --json bigcommerce.bigcommerce_update_category
Update a BigCommerce Category.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_category '{}' --json kosmo integrations:bigcommerce bigcommerce_update_category '{}' --json bigcommerce.bigcommerce_delete_category
Delete a BigCommerce Category.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_category '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_category '{}' --json bigcommerce.bigcommerce_list_brands
List BigCommerce Brands.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_brands '{}' --json kosmo integrations:bigcommerce bigcommerce_list_brands '{}' --json bigcommerce.bigcommerce_get_brand
Get one BigCommerce Brand.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_brand '{}' --json kosmo integrations:bigcommerce bigcommerce_get_brand '{}' --json bigcommerce.bigcommerce_create_brand
Create a BigCommerce Brand.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_brand '{}' --json kosmo integrations:bigcommerce bigcommerce_create_brand '{}' --json bigcommerce.bigcommerce_update_brand
Update a BigCommerce Brand.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_brand '{}' --json kosmo integrations:bigcommerce bigcommerce_update_brand '{}' --json bigcommerce.bigcommerce_delete_brand
Delete a BigCommerce Brand.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_brand '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_brand '{}' --json bigcommerce.bigcommerce_list_category_trees
List BigCommerce Category Trees.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_category_trees '{}' --json kosmo integrations:bigcommerce bigcommerce_list_category_trees '{}' --json bigcommerce.bigcommerce_get_category_tree
Get one BigCommerce Category Tree.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_category_tree '{}' --json kosmo integrations:bigcommerce bigcommerce_get_category_tree '{}' --json bigcommerce.bigcommerce_create_category_tree
Create a BigCommerce Category Tree.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_category_tree '{}' --json kosmo integrations:bigcommerce bigcommerce_create_category_tree '{}' --json bigcommerce.bigcommerce_update_category_tree
Update a BigCommerce Category Tree.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_category_tree '{}' --json kosmo integrations:bigcommerce bigcommerce_update_category_tree '{}' --json bigcommerce.bigcommerce_delete_category_tree
Delete a BigCommerce Category Tree.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_category_tree '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_category_tree '{}' --json bigcommerce.bigcommerce_list_price_lists
List BigCommerce Price Lists.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_price_lists '{}' --json kosmo integrations:bigcommerce bigcommerce_list_price_lists '{}' --json bigcommerce.bigcommerce_get_price_list
Get one BigCommerce Price List.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_price_list '{}' --json kosmo integrations:bigcommerce bigcommerce_get_price_list '{}' --json bigcommerce.bigcommerce_create_price_list
Create a BigCommerce Price List.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_price_list '{}' --json kosmo integrations:bigcommerce bigcommerce_create_price_list '{}' --json bigcommerce.bigcommerce_update_price_list
Update a BigCommerce Price List.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_price_list '{}' --json kosmo integrations:bigcommerce bigcommerce_update_price_list '{}' --json bigcommerce.bigcommerce_delete_price_list
Delete a BigCommerce Price List.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_price_list '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_price_list '{}' --json bigcommerce.bigcommerce_list_price_list_records
List records for a BigCommerce price list.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_price_list_records '{}' --json kosmo integrations:bigcommerce bigcommerce_list_price_list_records '{}' --json bigcommerce.bigcommerce_set_price_list_records
Create or update records for a BigCommerce price list.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_set_price_list_records '{}' --json kosmo integrations:bigcommerce bigcommerce_set_price_list_records '{}' --json bigcommerce.bigcommerce_delete_price_list_records
Delete price list records by query filters.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_price_list_records '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_price_list_records '{}' --json bigcommerce.bigcommerce_list_orders
List store orders with BigCommerce v2 filters.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_orders '{}' --json kosmo integrations:bigcommerce bigcommerce_list_orders '{}' --json bigcommerce.bigcommerce_get_order
Get one order by ID.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_order '{}' --json kosmo integrations:bigcommerce bigcommerce_get_order '{}' --json bigcommerce.bigcommerce_create_order
Create an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_order '{}' --json kosmo integrations:bigcommerce bigcommerce_create_order '{}' --json bigcommerce.bigcommerce_update_order
Update an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_order '{}' --json kosmo integrations:bigcommerce bigcommerce_update_order '{}' --json bigcommerce.bigcommerce_delete_order
Delete an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_order '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_order '{}' --json bigcommerce.bigcommerce_list_order_products
List products for a BigCommerce order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_order_products '{}' --json kosmo integrations:bigcommerce bigcommerce_list_order_products '{}' --json bigcommerce.bigcommerce_list_shipping_addresses
List Order Shipping Addresses for an order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_shipping_addresses '{}' --json kosmo integrations:bigcommerce bigcommerce_list_shipping_addresses '{}' --json bigcommerce.bigcommerce_list_coupons
List Order Coupons for an order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_coupons '{}' --json kosmo integrations:bigcommerce bigcommerce_list_coupons '{}' --json bigcommerce.bigcommerce_list_transactions
List Order Transactions for an order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_transactions '{}' --json kosmo integrations:bigcommerce bigcommerce_list_transactions '{}' --json bigcommerce.bigcommerce_list_order_shipments
List shipments for an order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_order_shipments '{}' --json kosmo integrations:bigcommerce bigcommerce_list_order_shipments '{}' --json bigcommerce.bigcommerce_get_order_shipment
Get one shipment for an order.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_order_shipment '{}' --json kosmo integrations:bigcommerce bigcommerce_get_order_shipment '{}' --json bigcommerce.bigcommerce_create_order_shipment
Create a shipment for an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_order_shipment '{}' --json kosmo integrations:bigcommerce bigcommerce_create_order_shipment '{}' --json bigcommerce.bigcommerce_update_order_shipment
Update a shipment for an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_order_shipment '{}' --json kosmo integrations:bigcommerce bigcommerce_update_order_shipment '{}' --json bigcommerce.bigcommerce_delete_order_shipment
Delete a shipment for an order.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_order_shipment '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_order_shipment '{}' --json bigcommerce.bigcommerce_list_customers
List customers with BigCommerce v3 filters.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_customers '{}' --json kosmo integrations:bigcommerce bigcommerce_list_customers '{}' --json bigcommerce.bigcommerce_get_customer
Get one customer by ID using the v3 customers filter.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_customer '{}' --json kosmo integrations:bigcommerce bigcommerce_get_customer '{}' --json bigcommerce.bigcommerce_create_customers
Create one or more customers.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_customers '{}' --json kosmo integrations:bigcommerce bigcommerce_create_customers '{}' --json bigcommerce.bigcommerce_update_customers
Update one or more customers.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_customers '{}' --json kosmo integrations:bigcommerce bigcommerce_update_customers '{}' --json bigcommerce.bigcommerce_delete_customers
Delete customers by comma-separated IDs.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_customers '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_customers '{}' --json bigcommerce.bigcommerce_list_customer_addresses
List Customer Addresses.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_customer_addresses '{}' --json kosmo integrations:bigcommerce bigcommerce_list_customer_addresses '{}' --json bigcommerce.bigcommerce_get_customer_address
Get one record from Customer Addresses.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_customer_address '{}' --json kosmo integrations:bigcommerce bigcommerce_get_customer_address '{}' --json bigcommerce.bigcommerce_create_customer_addresses
Create Customer Addresses.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_customer_addresses '{}' --json kosmo integrations:bigcommerce bigcommerce_create_customer_addresses '{}' --json bigcommerce.bigcommerce_update_customer_addresses
Update Customer Addresses.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_customer_addresses '{}' --json kosmo integrations:bigcommerce bigcommerce_update_customer_addresses '{}' --json bigcommerce.bigcommerce_delete_customer_addresses
Delete Customer Addresses by comma-separated IDs.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_customer_addresses '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_customer_addresses '{}' --json bigcommerce.bigcommerce_list_customer_form_field_values
List Customer Form Field Values.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_customer_form_field_values '{}' --json kosmo integrations:bigcommerce bigcommerce_list_customer_form_field_values '{}' --json bigcommerce.bigcommerce_get_customer_form_field_value
Get one record from Customer Form Field Values.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_customer_form_field_value '{}' --json kosmo integrations:bigcommerce bigcommerce_get_customer_form_field_value '{}' --json bigcommerce.bigcommerce_create_customer_form_field_values
Create Customer Form Field Values.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_customer_form_field_values '{}' --json kosmo integrations:bigcommerce bigcommerce_create_customer_form_field_values '{}' --json bigcommerce.bigcommerce_update_customer_form_field_values
Update Customer Form Field Values.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_customer_form_field_values '{}' --json kosmo integrations:bigcommerce bigcommerce_update_customer_form_field_values '{}' --json bigcommerce.bigcommerce_delete_customer_form_field_values
Delete Customer Form Field Values by comma-separated IDs.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_customer_form_field_values '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_customer_form_field_values '{}' --json bigcommerce.bigcommerce_list_customer_groups
List v2 customer groups.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_customer_groups '{}' --json kosmo integrations:bigcommerce bigcommerce_list_customer_groups '{}' --json bigcommerce.bigcommerce_get_customer_group
Get one v2 customer group.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_customer_group '{}' --json kosmo integrations:bigcommerce bigcommerce_get_customer_group '{}' --json bigcommerce.bigcommerce_create_customer_group
Create a v2 customer group.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_customer_group '{}' --json kosmo integrations:bigcommerce bigcommerce_create_customer_group '{}' --json bigcommerce.bigcommerce_update_customer_group
Update a v2 customer group.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_customer_group '{}' --json kosmo integrations:bigcommerce bigcommerce_update_customer_group '{}' --json bigcommerce.bigcommerce_delete_customer_group
Delete a v2 customer group.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_customer_group '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_customer_group '{}' --json bigcommerce.bigcommerce_list_carts
List carts.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_carts '{}' --json kosmo integrations:bigcommerce bigcommerce_list_carts '{}' --json bigcommerce.bigcommerce_get_cart
Get one cart.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_cart '{}' --json kosmo integrations:bigcommerce bigcommerce_get_cart '{}' --json bigcommerce.bigcommerce_create_cart
Create a cart.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_cart '{}' --json kosmo integrations:bigcommerce bigcommerce_create_cart '{}' --json bigcommerce.bigcommerce_delete_cart
Delete a cart.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_cart '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_cart '{}' --json bigcommerce.bigcommerce_get_checkout
Get checkout details.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_checkout '{}' --json kosmo integrations:bigcommerce bigcommerce_get_checkout '{}' --json bigcommerce.bigcommerce_update_checkout
Update checkout details.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_checkout '{}' --json kosmo integrations:bigcommerce bigcommerce_update_checkout '{}' --json bigcommerce.bigcommerce_update_checkout_billing_address
Update checkout billing address.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_checkout_billing_address '{}' --json kosmo integrations:bigcommerce bigcommerce_update_checkout_billing_address '{}' --json bigcommerce.bigcommerce_create_checkout_consignments
Create checkout consignments.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_checkout_consignments '{}' --json kosmo integrations:bigcommerce bigcommerce_create_checkout_consignments '{}' --json bigcommerce.bigcommerce_update_checkout_consignment
Update a checkout consignment.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_checkout_consignment '{}' --json kosmo integrations:bigcommerce bigcommerce_update_checkout_consignment '{}' --json bigcommerce.bigcommerce_delete_checkout_consignment
Delete a checkout consignment.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_checkout_consignment '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_checkout_consignment '{}' --json bigcommerce.bigcommerce_get_store
Get store information.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_store '{}' --json kosmo integrations:bigcommerce bigcommerce_get_store '{}' --json bigcommerce.bigcommerce_get_storefront_status
Get storefront status and verify API access.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_storefront_status '{}' --json kosmo integrations:bigcommerce bigcommerce_get_storefront_status '{}' --json bigcommerce.bigcommerce_get_current_user
Compatibility alias that returns storefront status.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_current_user '{}' --json kosmo integrations:bigcommerce bigcommerce_get_current_user '{}' --json bigcommerce.bigcommerce_list_channels
List BigCommerce Channels.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_channels '{}' --json kosmo integrations:bigcommerce bigcommerce_list_channels '{}' --json bigcommerce.bigcommerce_get_channel
Get one BigCommerce Channel.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_channel '{}' --json kosmo integrations:bigcommerce bigcommerce_get_channel '{}' --json bigcommerce.bigcommerce_create_channel
Create a BigCommerce Channel.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_channel '{}' --json kosmo integrations:bigcommerce bigcommerce_create_channel '{}' --json bigcommerce.bigcommerce_update_channel
Update a BigCommerce Channel.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_channel '{}' --json kosmo integrations:bigcommerce bigcommerce_update_channel '{}' --json bigcommerce.bigcommerce_delete_channel
Delete a BigCommerce Channel.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_channel '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_channel '{}' --json bigcommerce.bigcommerce_list_sites
List BigCommerce Sites.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_sites '{}' --json kosmo integrations:bigcommerce bigcommerce_list_sites '{}' --json bigcommerce.bigcommerce_get_site
Get one BigCommerce Site.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_site '{}' --json kosmo integrations:bigcommerce bigcommerce_get_site '{}' --json bigcommerce.bigcommerce_create_site
Create a BigCommerce Site.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_site '{}' --json kosmo integrations:bigcommerce bigcommerce_create_site '{}' --json bigcommerce.bigcommerce_update_site
Update a BigCommerce Site.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_site '{}' --json kosmo integrations:bigcommerce bigcommerce_update_site '{}' --json bigcommerce.bigcommerce_delete_site
Delete a BigCommerce Site.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_site '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_site '{}' --json bigcommerce.bigcommerce_list_webhooks
List BigCommerce Webhooks.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_webhooks '{}' --json kosmo integrations:bigcommerce bigcommerce_list_webhooks '{}' --json bigcommerce.bigcommerce_get_webhook
Get one BigCommerce Webhook.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_webhook '{}' --json kosmo integrations:bigcommerce bigcommerce_get_webhook '{}' --json bigcommerce.bigcommerce_create_webhook
Create a BigCommerce Webhook.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_webhook '{}' --json kosmo integrations:bigcommerce bigcommerce_create_webhook '{}' --json bigcommerce.bigcommerce_update_webhook
Update a BigCommerce Webhook.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_webhook '{}' --json kosmo integrations:bigcommerce bigcommerce_update_webhook '{}' --json bigcommerce.bigcommerce_delete_webhook
Delete a BigCommerce Webhook.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_webhook '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_webhook '{}' --json bigcommerce.bigcommerce_list_content_pages
List BigCommerce Content Pages.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_content_pages '{}' --json kosmo integrations:bigcommerce bigcommerce_list_content_pages '{}' --json bigcommerce.bigcommerce_get_content_page
Get one BigCommerce Content Page.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_content_page '{}' --json kosmo integrations:bigcommerce bigcommerce_get_content_page '{}' --json bigcommerce.bigcommerce_create_content_page
Create a BigCommerce Content Page.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_content_page '{}' --json kosmo integrations:bigcommerce bigcommerce_create_content_page '{}' --json bigcommerce.bigcommerce_update_content_page
Update a BigCommerce Content Page.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_content_page '{}' --json kosmo integrations:bigcommerce bigcommerce_update_content_page '{}' --json bigcommerce.bigcommerce_delete_content_page
Delete a BigCommerce Content Page.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_content_page '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_content_page '{}' --json bigcommerce.bigcommerce_list_widgets
List BigCommerce Widgets.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_widgets '{}' --json kosmo integrations:bigcommerce bigcommerce_list_widgets '{}' --json bigcommerce.bigcommerce_get_widget
Get one BigCommerce Widget.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_widget '{}' --json kosmo integrations:bigcommerce bigcommerce_get_widget '{}' --json bigcommerce.bigcommerce_create_widget
Create a BigCommerce Widget.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_widget '{}' --json kosmo integrations:bigcommerce bigcommerce_create_widget '{}' --json bigcommerce.bigcommerce_update_widget
Update a BigCommerce Widget.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_widget '{}' --json kosmo integrations:bigcommerce bigcommerce_update_widget '{}' --json bigcommerce.bigcommerce_delete_widget
Delete a BigCommerce Widget.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_widget '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_widget '{}' --json bigcommerce.bigcommerce_list_widget_templates
List BigCommerce Widget Templates.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_widget_templates '{}' --json kosmo integrations:bigcommerce bigcommerce_list_widget_templates '{}' --json bigcommerce.bigcommerce_get_widget_template
Get one BigCommerce Widget Template.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_widget_template '{}' --json kosmo integrations:bigcommerce bigcommerce_get_widget_template '{}' --json bigcommerce.bigcommerce_create_widget_template
Create a BigCommerce Widget Template.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_widget_template '{}' --json kosmo integrations:bigcommerce bigcommerce_create_widget_template '{}' --json bigcommerce.bigcommerce_update_widget_template
Update a BigCommerce Widget Template.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_widget_template '{}' --json kosmo integrations:bigcommerce bigcommerce_update_widget_template '{}' --json bigcommerce.bigcommerce_delete_widget_template
Delete a BigCommerce Widget Template.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_widget_template '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_widget_template '{}' --json bigcommerce.bigcommerce_list_redirects
List BigCommerce Redirects.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_redirects '{}' --json kosmo integrations:bigcommerce bigcommerce_list_redirects '{}' --json bigcommerce.bigcommerce_get_redirect
Get one BigCommerce Redirect.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_get_redirect '{}' --json kosmo integrations:bigcommerce bigcommerce_get_redirect '{}' --json bigcommerce.bigcommerce_create_redirect
Create a BigCommerce Redirect.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_create_redirect '{}' --json kosmo integrations:bigcommerce bigcommerce_create_redirect '{}' --json bigcommerce.bigcommerce_update_redirect
Update a BigCommerce Redirect.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_update_redirect '{}' --json kosmo integrations:bigcommerce bigcommerce_update_redirect '{}' --json bigcommerce.bigcommerce_delete_redirect
Delete a BigCommerce Redirect.
write - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_delete_redirect '{}' --json kosmo integrations:bigcommerce bigcommerce_delete_redirect '{}' --json bigcommerce.bigcommerce_list_regions
List content regions for widget placement.
read - Parameters
- none
kosmo integrations:call bigcommerce.bigcommerce_list_regions '{}' --json kosmo integrations:bigcommerce bigcommerce_list_regions '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
bigcommerce.bigcommerce_list_products 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_products --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_variants 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_variants --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_variant 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_variant --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_variant 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_variant --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_variant 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_variant --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_variant 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_variant --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_images 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_images --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_image 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_image 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_image 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_image 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_custom_fields 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_custom_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_custom_field 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_custom_field 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_custom_field 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_custom_field 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_custom_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_modifiers 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_modifiers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_modifier 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_modifier --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_modifier 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_modifier --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_modifier 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_modifier --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_modifier 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_modifier --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_options 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_options --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_option 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_option --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_option 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_option --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_option 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_option --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_option 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_option --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_product_videos 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_product_videos --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_product_video 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_product_video --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_product_video 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_product_video --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_product_video 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_product_video --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_product_video 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_product_video --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_categories 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_categories --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_category 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_category --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_category 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_category --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_category 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_category --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_category 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_category --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_brands 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_brands --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_brand 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_brand --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_brand 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_brand --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_brand 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_brand --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_brand 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_brand --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_category_trees 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_category_trees --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_category_tree 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_category_tree --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_category_tree 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_category_tree --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_category_tree 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_category_tree --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_category_tree 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_category_tree --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_price_lists 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_price_lists --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_price_list 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_price_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_price_list 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_price_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_price_list 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_price_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_price_list 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_price_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_price_list_records 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_price_list_records --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_set_price_list_records 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_set_price_list_records --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_price_list_records 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_price_list_records --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_orders 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_orders --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_order 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_order --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_order 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_order --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_order 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_order --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_order 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_order --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_order_products 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_order_products --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_shipping_addresses 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_shipping_addresses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_coupons 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_coupons --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_transactions 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_transactions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_order_shipments 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_order_shipments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_order_shipment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_order_shipment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_order_shipment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_order_shipment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_order_shipment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_order_shipment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_order_shipment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_order_shipment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_customers 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_customers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_customer 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_customer --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_customers 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_customers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_customers 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_customers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_customers 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_customers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_customer_addresses 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_customer_addresses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_customer_address 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_customer_address --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_customer_addresses 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_customer_addresses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_customer_addresses 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_customer_addresses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_customer_addresses 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_customer_addresses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_customer_form_field_values 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_customer_form_field_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_customer_form_field_value 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_customer_form_field_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_customer_form_field_values 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_customer_form_field_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_customer_form_field_values 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_customer_form_field_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_customer_form_field_values 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_customer_form_field_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_customer_groups 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_customer_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_customer_group 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_customer_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_customer_group 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_customer_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_customer_group 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_customer_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_customer_group 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_customer_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_carts 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_carts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_cart 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_cart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_cart 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_cart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_cart 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_cart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_checkout 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_checkout --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_checkout 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_checkout --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_checkout_billing_address 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_checkout_billing_address --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_checkout_consignments 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_checkout_consignments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_checkout_consignment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_checkout_consignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_checkout_consignment 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_checkout_consignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_store 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_store --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_storefront_status 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_storefront_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_current_user 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_channels 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_channels --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_channel 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_channel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_channel 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_channel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_channel 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_channel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_channel 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_channel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_sites 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_sites --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_site 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_site --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_site 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_site --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_site 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_site --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_site 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_site --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_webhooks 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_webhook 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_webhook 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_webhook 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_webhook 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_content_pages 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_content_pages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_content_page 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_content_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_content_page 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_content_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_content_page 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_content_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_content_page 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_content_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_widgets 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_widgets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_widget 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_widget --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_widget 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_widget --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_widget 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_widget --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_widget 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_widget --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_widget_templates 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_widget_templates --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_widget_template 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_widget_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_widget_template 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_widget_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_widget_template 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_widget_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_widget_template 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_widget_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_redirects 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_redirects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_get_redirect 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_get_redirect --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_create_redirect 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_create_redirect --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_update_redirect 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_update_redirect --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_delete_redirect 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_delete_redirect --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bigcommerce.bigcommerce_list_regions 0 parameters
kosmo integrations:schema bigcommerce.bigcommerce_list_regions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.