Actions38
- Order Actions
- Product Actions
- Customer Actions
- Address Actions
- Special Offer Actions
- Coupon Actions
- Shipment Actions
- Digital Product Actions
Overview
The node integrates with the Salla.sa e-commerce platform API to manage various resources, including products. Specifically, for the Product - Update operation, it updates an existing product's details on the Salla platform by sending the updated fields to the API.
This node is beneficial in scenarios where you want to automate product management workflows, such as updating product information based on external data sources or triggers. For example, you could update product descriptions, names, or status automatically when inventory changes or marketing campaigns require product info adjustments.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the product to update. |
| Additional Fields | Optional fields to update on the product: |
| - Name: The new name of the product. | |
| - Description: The new description of the product. | |
| - Status: The status of the product; possible values are "Active", "Inactive", or "Draft". |
Output
The output is a JSON array containing the response from the Salla API after updating the product. This typically includes the updated product object with its current properties reflecting the changes made.
No binary data output is produced by this operation.
Dependencies
- Requires an API authentication token configured via OAuth2 credentials to access the Salla API.
- Relies on the
sallaApiRequesthelper function to make HTTP requests to the Salla API endpoints. - The node expects network connectivity to the Salla.sa platform.
Troubleshooting
Common issues:
- Invalid or missing product ID will cause the API request to fail.
- Providing invalid field values (e.g., unsupported status) may result in API errors.
- Network or authentication failures can prevent successful updates.
Error messages:
"The operation "update" is not supported for products!"— indicates an unsupported operation was requested; ensure the operation is set correctly.- API error responses will be surfaced if the update fails due to validation or permission issues.
Resolutions:
- Verify the product ID exists and is correct.
- Ensure all required API credentials are properly configured.
- Validate that additional fields conform to expected formats and allowed values.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes