
Tiny ERP
Actions9
- Products Actions
- Orders Actions
- Users Actions
Overview
The node integrates with the Tiny ERP system to retrieve product information based on a search term. It is designed to fetch products by name, code, or partial matches, making it useful for workflows that require querying product catalogs or inventories dynamically. For example, you might use this node to look up product details before processing orders or updating stock levels.
Properties
| Name | Meaning |
|---|---|
| Search Term | The name, code, or part of the product identifier you want to search for (required). |
Output
The node outputs an array of product objects matching the search criteria. Each item in the output contains a json field with product details as returned by the Tiny ERP API. The exact structure depends on the API response but typically includes product identifiers, names, descriptions, prices, and stock information.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Tiny ERP API.
- The node depends on the external Tiny ERP service being accessible and responsive.
- Proper configuration of the API credentials within n8n is necessary for successful execution.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing an empty or invalid search term may result in no products found or errors.
- Network connectivity problems can prevent communication with the Tiny ERP API.
Error messages:
"The operation "getProducts" is not supported for resource "products": This indicates a misconfiguration of the operation or resource parameters.- API error messages related to authentication or rate limits should be resolved by verifying credentials and respecting API usage policies.
Links and References
- Tiny ERP Official API Documentation (example link; replace with actual if available)
- n8n documentation on Creating Custom Nodes