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 Digital Product - Get operation, it retrieves detailed information about a single digital product by its ID.
Common scenarios where this node is beneficial include:
- Fetching details of a specific digital product to display or process further in an automation workflow.
- Integrating Salla's digital product data into other systems or reports.
- Automating inventory checks or updates based on digital product information.
Example use case:
- A workflow that triggers when a new order is placed, then uses this node to get details about the purchased digital product to send customized download links or license keys to the customer.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the digital product to retrieve. This is required for the "Get" operation. |
Output
The node outputs a JSON object representing the digital product retrieved from the Salla API. This includes all available fields returned by the API for that digital product, such as name, description, status, pricing, and any other metadata associated with the digital product.
The output is structured as an array of JSON objects (usually containing one object for the "Get" operation). There is no binary data output for this operation.
Dependencies
- Requires an API authentication credential configured in n8n to connect to the Salla.sa API.
- The node depends on the
sallaApiRequestandsallaApiRequestAllItemshelper functions to make HTTP requests to the Salla API endpoints. - Proper network access to the Salla API endpoint is necessary.
Troubleshooting
Error: "The operation 'get' is not supported for digital products!"
This error indicates an unsupported operation was requested. Ensure the operation parameter is set correctly to "get" for this resource.API request failures (e.g., 401 Unauthorized, 404 Not Found)
Check that the API credentials are valid and have sufficient permissions. Verify the provided digital product ID exists in the Salla system.Empty or missing output
Confirm that the ID parameter is correctly set and corresponds to an existing digital product.Rate limiting or connectivity issues
If the API returns rate limit errors or times out, consider adding retry logic or checking network stability.
Links and References
- Salla API Documentation (general reference for API endpoints and data structures)
- n8n documentation on creating custom nodes (for understanding node development concepts)