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, allowing users to manage various resources such as orders, products, customers, addresses, special offers, coupons, shipments, and digital products. Specifically, for the Product resource with the Create operation, the node enables creating new products in the Salla store by sending product details to the API.
Common scenarios where this node is beneficial include:
- Automating product creation workflows when new items are added in external systems.
- Syncing product catalogs from other platforms or databases into Salla.
- Bulk uploading products with specific attributes like name, description, and status.
For example, a user can configure this node to create a product named "Winter Jacket" with a description and set its status to "active," thereby adding it directly to their Salla store without manual entry.
Properties
| Name | Meaning |
|---|---|
| Additional Fields | Collection of optional fields to define the product's attributes: |
| - Name | The name/title of the product to be created. |
| - Description | A textual description providing details about the product. |
| - Status | The current state of the product; options are: "Active", "Inactive", or "Draft". |
Output
The node outputs an array of JSON objects representing the response from the Salla API after creating the product(s). Each object contains the details of the created product as returned by the API, including identifiers and any metadata provided by Salla.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Salla.sa e-commerce platform via an API authentication token (OAuth2 or similar).
- The node depends on the
sallaApiRequestfunction to communicate with the Salla API endpoints. - Proper credentials must be configured in n8n to authorize API requests.
Troubleshooting
Common Issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing incomplete or invalid product data (e.g., empty name) may result in API errors.
- Network connectivity issues can prevent successful API calls.
Error Messages:
"The operation "create" is not supported for products!"β This indicates an unsupported operation was requested; ensure the operation parameter is correctly set to "create".- API error messages related to validation will typically indicate which field is missing or invalid; verify all required fields are properly filled.
Resolution Tips:
- Double-check API credentials and permissions.
- Validate input fields before execution.
- Use the nodeβs "Continue On Fail" option to handle errors gracefully during batch operations.
Links and References
- Salla API Documentation β Official API docs for detailed endpoint information.
- n8n Documentation β For guidance on setting up credentials and using nodes effectively.