FreeWebStore icon

FreeWebStore

Interact with FreeWebStore API

Actions13

Overview

This node interacts with the FreeWebStore API to update product information. It allows users to modify existing product details by specifying the product ID and providing updated product data in JSON format. This is useful for e-commerce store managers who need to keep product information current, such as changing prices, stock levels, or product descriptions.

Use Case Examples

  1. Updating the stock quantity of a product after a new shipment arrives.
  2. Changing the base price of a product to reflect a sale or price increase.
  3. Modifying the product name or SKU to correct errors or rebrand items.

Properties

Name Meaning
Product ID The unique identifier of the product to update.
Product Data The updated product information as a JSON object, including fields like name, SKU, stock, and pricing details.

Output

JSON

  • core
    • name - The updated name of the product.
    • sku - The updated SKU (stock keeping unit) of the product.
    • stock - The updated stock quantity of the product.
    • pricing
      * baseprice - The updated base price of the product.

Dependencies

  • Requires an API key credential for FreeWebStore API authentication.

Troubleshooting

  • Ensure the Product ID is correct and exists in the FreeWebStore system to avoid 'not found' errors.
  • Validate the JSON structure of the Product Data to match the API schema to prevent request failures.
  • Check API key validity and permissions if authentication errors occur.
  • Handle network or API downtime gracefully, possibly using the node's 'continue on fail' option.

Links

Discussion