Actions14
Overview
This node integrates with the Tiny ERP system to manage product data. Specifically, the Product - Get operation retrieves detailed information about a single product by its ID from the Tiny ERP API.
Typical use cases include:
- Fetching product details for inventory management or display in other systems.
- Synchronizing product data between Tiny ERP and external applications.
- Automating workflows that require up-to-date product information.
For example, you might use this node to get the full details of a product before updating stock levels or generating reports.
Properties
| Name | Meaning |
|---|---|
| Product ID | The unique numeric identifier of the product to retrieve. This is required to specify which product's details to fetch. |
Output
The output contains a JSON object representing the product data as returned by the Tiny ERP API. This includes all available fields describing the product, such as name, SKU, description, pricing, stock, and other metadata.
The output structure directly reflects the API response for the product resource and can be used downstream in your workflow for further processing or decision-making.
No binary data is produced by this operation.
Dependencies
- Requires an active connection to the Tiny ERP API.
- Needs an API authentication credential configured in n8n (an OAuth2 token or similar) to authorize requests.
- The node uses the
/produtos/{productId}endpoint of the Tiny ERP API to fetch product details.
Troubleshooting
Common issues:
- Invalid or missing Product ID will cause the request to fail.
- Authentication errors if the API credentials are not set up correctly.
- Network or API downtime may result in request failures.
Error messages:
"The operation "get" is not supported!"— indicates a misconfiguration of the operation parameter."The resource "product" is not supported!"— indicates a misconfiguration of the resource parameter.- API error messages returned from Tiny ERP (e.g., product not found) will be passed through; ensure the Product ID exists.
Resolution tips:
- Verify the Product ID is correct and exists in Tiny ERP.
- Check that the API credentials are valid and have necessary permissions.
- Enable "Continue On Fail" in the node settings to handle errors gracefully in batch operations.
Links and References
- Tiny ERP API Documentation (official API docs for product endpoints)
- n8n Documentation (for general usage of HTTP and API nodes)