Actions38
- Order Actions
- Product Actions
- Customer Actions
- Address Actions
- Special Offer Actions
- Coupon Actions
- Shipment Actions
- Digital Product Actions
Overview
This node integrates with the Salla.sa e-commerce platform API to manage products and other resources. Specifically, for the Product - Delete operation, it allows users to delete a product from their Salla store by specifying the product's unique ID.
This operation is useful in scenarios where you want to automate inventory management, such as removing discontinued or out-of-stock products automatically. For example, after syncing your product catalog with an external system, you might want to delete products that no longer exist in your master database.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the product to delete. This is required to specify which product should be removed from the Salla store. |
Output
The output of the delete operation is the JSON response returned by the Salla API after attempting to delete the specified product. Typically, this will include confirmation of deletion or details about the deleted product. If the API returns any data, it will be included in the json output field.
The node does not output binary data for this operation.
Dependencies
- Requires an active connection to the Salla.sa e-commerce platform via an API key credential configured in n8n.
- The node uses the Salla API endpoints to perform operations; therefore, internet access and valid authentication credentials are necessary.
- No additional external dependencies beyond the configured API credentials.
Troubleshooting
Common issues:
- Providing an invalid or non-existent product ID will result in an error from the Salla API.
- Insufficient permissions or expired API credentials can cause authorization errors.
- Network connectivity problems may prevent the node from reaching the Salla API.
Error messages and resolutions:
- "The operation 'delete' is not supported for products!" β This indicates a misconfiguration or unsupported operation; ensure the operation is set correctly to "Delete".
- API errors related to invalid IDs typically indicate the product does not exist; verify the ID before running the node.
- Authentication errors require checking and possibly reconfiguring the API credentials in n8n.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes