Actions5
- Product Actions
- Store Actions
Overview
This node interacts with the Salla API to manage products and store settings. Specifically, the 'Product - Get All' operation retrieves a list of all products from the Salla store. This is useful for scenarios where you need to fetch and process product data in bulk, such as syncing product catalogs, generating reports, or integrating product information with other systems.
Use Case Examples
- Fetching all products to display in a custom dashboard.
- Synchronizing product data with an external inventory management system.
Properties
| Name | Meaning |
|---|---|
| Resource | The type of resource to interact with, e.g., 'Product' or 'Store'. |
| Operation | The specific action to perform on the selected resource. For 'Product', options include 'Get All', 'Get', 'Create', and 'Update Status'. |
Output
JSON
id- The unique identifier of the product.name- The name of the product.price- The price of the product.product_type- The type/category of the product.status- The current status of the product (e.g., on sale, out of stock).otherProperties- Additional product details as returned by the Salla API.
Dependencies
- Salla API authentication via OAuth2
Troubleshooting
- Common issues include authentication failures due to invalid or expired OAuth2 tokens. Ensure the OAuth2 credentials are correctly configured and refreshed.
- API request failures might occur if the Salla API endpoint is unreachable or if rate limits are exceeded. Check network connectivity and API usage limits.
- Errors related to missing required parameters (e.g., productId for 'Get' or 'Update Status' operations) will be thrown. Ensure all required fields are provided.
Links
- Salla API Documentation - Official documentation for the Salla API endpoints and usage.