
Tiny ERP
Actions9
- Products Actions
- Orders Actions
- Users Actions
Overview
This node integrates with the Tiny ERP system to retrieve detailed information about orders. Specifically, the "Get Order Data" operation allows users to fetch comprehensive data for a given order by specifying its unique order number. This is useful in scenarios where you need to automate order tracking, generate reports, or synchronize order details with other systems such as CRMs or shipping platforms.
For example, you might use this node to:
- Automatically pull order details when an order number is received from another workflow.
- Validate order status before processing shipments.
- Aggregate order data for analytics or customer service dashboards.
Properties
| Name | Meaning |
|---|---|
| Order Number | The specific order number to retrieve detailed information for. This must be provided. |
Output
The node outputs JSON data containing the detailed information of the requested order. The structure typically includes all relevant fields related to the order such as items, quantities, prices, customer info, status, and dates as returned by the Tiny ERP API.
If the node encounters an error (e.g., invalid order number), it outputs a JSON object with an error field describing the issue along with the resource and operation names.
The node does not output binary data.
Dependencies
- Requires an API key credential to authenticate with the Tiny ERP API.
- The node depends on the external Tiny ERP service being accessible and the API credentials being valid.
- No additional environment variables are explicitly required beyond the API authentication setup.
Troubleshooting
- Common issues:
- Providing an incorrect or non-existent order number will result in an error response.
- Network connectivity problems or invalid API credentials will cause authentication or request failures.
- Error messages:
"The operation "getOrderData" is not supported for resource "orders": This indicates a misconfiguration of the operation or resource parameters.- Errors returned from the API (e.g., "Order not found") will appear in the output's
errorfield.
- Resolutions:
- Verify the order number is correct and exists in Tiny ERP.
- Ensure the API key credential is properly configured and has necessary permissions.
- Check network connectivity and API endpoint availability.
Links and References
- Tiny ERP Official API Documentation (replace with actual URL)
- n8n Documentation on Creating Custom Nodes