Actions5
- Product Actions
- Store Actions
Overview
This node interacts with the Salla API to create a new product in the Salla e-commerce platform. It is useful for automating product creation workflows, such as adding new items to an online store programmatically. For example, it can be used to add a new product with a specified name, price, and product type directly from an automation workflow without manual entry.
Use Case Examples
- Creating a new product named 'T-shirt' priced at 19.99 as a physical product.
- Adding a digital product like an eBook with a specified price.
- Creating a service-type product such as a consultation session.
Properties
| Name | Meaning |
|---|---|
| Name | The name of the product to be created. |
| Price | The price of the product, with two decimal precision. |
| Product Type | The type/category of the product, such as product, service, digital, food, or donating. |
Output
JSON
id- The unique identifier of the created product.name- The name of the created product.price- The price of the created product.product_type- The type of the created product.status- The status of the created product, typically indicating availability.
Dependencies
- Requires an OAuth2 API credential for authentication with the Salla API.
Troubleshooting
- Common issues include authentication failures due to invalid or expired OAuth2 tokens. Ensure the OAuth2 credentials are correctly configured and valid.
- API request errors may occur if required parameters (name, price, productType) are missing or invalid. Verify all required fields are provided and correctly formatted.
- Network or API endpoint issues can cause request failures. Check network connectivity and Salla API status.
Links
- Salla API - Create Product - Official documentation for creating products via the Salla API.