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 perform various operations on different resources such as orders, products, customers, addresses, special offers, coupons, shipments, and digital products. Specifically for the Product resource with the Get operation, the node retrieves detailed information about a single product by its unique ID.
Common scenarios where this node is beneficial include:
- Fetching product details to display or process in workflows.
- Integrating product data into other systems or reports.
- Automating inventory checks or updates based on product information.
Practical example:
- A workflow that triggers when a new order is placed and uses this node to get detailed product information (like price, description, stock status) to update an internal database or notify a sales team.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the product to retrieve. This is required for the "Get" operation. |
Output
The node outputs JSON data representing the product details retrieved from the Salla API. The structure typically includes fields such as product name, description, status, pricing, stock levels, and other metadata provided by the Salla platform.
If multiple items were returned (not applicable for the "Get" operation), they would be output as an array of JSON objects.
The node does not output binary data for this operation.
Dependencies
- Requires an API authentication token configured via OAuth2 credentials to access the Salla API.
- Depends on the
sallaApiRequestandsallaApiRequestAllItemshelper functions to make HTTP requests to the Salla API endpoints. - The node expects proper configuration of the Salla OAuth2 API credentials within n8n.
Troubleshooting
- Missing or invalid ID: If the "ID" property is empty or incorrect, the API call will fail. Ensure the product ID is valid and correctly entered.
- Authentication errors: If the OAuth2 credentials are missing, expired, or invalid, the node will throw authentication errors. Reconfigure or refresh the API credentials.
- API rate limits or connectivity issues: Network problems or hitting API rate limits may cause request failures. Check network connectivity and API usage quotas.
- Unsupported operation error: If an unsupported operation is selected for the Product resource, the node throws an error indicating the operation is not supported.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n OAuth2 Credential Setup
- n8n Node Development Guide