Actions13
Overview
This node interacts with the FreeWebStore API to manage products, including creating new products. It is useful for automating product management tasks in an e-commerce store powered by FreeWebStore. For example, it can be used to programmatically add new products with detailed attributes such as name, SKU, stock, and pricing information.
Use Case Examples
- Automatically create new products in FreeWebStore when new items are added to an inventory management system.
- Batch upload product data from a spreadsheet or database to FreeWebStore.
Properties
| Name | Meaning |
|---|---|
| Product Data | The product data as a JSON object, including core details like name, SKU, stock, and pricing. This is required for creating or updating a product. |
Output
JSON
id- The unique identifier of the created product.name- The name of the created product.sku- The SKU (stock keeping unit) of the created product.stock- The stock quantity of the created product.pricingbaseprice- The base price of the created product.
Dependencies
- Requires an API key credential for FreeWebStore API authentication.
Troubleshooting
- Common issues include invalid JSON format in the Product Data input, which will cause the API request to fail. Ensure the JSON is correctly formatted and matches the API schema.
- API key authentication errors if the provided API key is invalid or missing. Verify the API key credential is correctly configured.
- Network or API endpoint errors if the FreeWebStore API is unreachable or returns an error. Check network connectivity and API status.
Links
- FreeWebStore API Documentation - Official API documentation for FreeWebStore, detailing the product data schema and endpoints.