Actions67
- Archive Document Actions
- Cashbook Actions
- Client Actions
- Company Actions
- E-Invoice Actions
- Email Actions
- Info Actions
- Issued Document Actions
- Product Actions
- Receipt Actions
- Received Document Actions
- Setting Actions
- Supplier Actions
- Tax (F24) Actions
- Webhook Actions
Overview
This node integrates with the Fatture in Cloud API to manage products within a company. Specifically, the Product - Get operation retrieves detailed information about a single product identified by its Product ID within a specified company.
Typical use cases include:
- Fetching product details for inventory management or synchronization.
- Retrieving product data to display or process in workflows such as order processing or reporting.
- Integrating product information into other systems or automations that require up-to-date product metadata.
For example, you might use this node to get the name, price, and description of a product before creating an invoice or updating stock levels elsewhere.
Properties
| Name | Meaning |
|---|---|
| Company ID | The numeric identifier of the company under which the product exists. |
| Product ID | The numeric identifier of the product to retrieve. |
Output
The node outputs JSON data representing the product's details as returned by the Fatture in Cloud API. This typically includes fields such as product name, code, description, price, tax information, and other relevant attributes defined in the product record.
If the product is found, the output JSON will contain all available product properties. If not found or an error occurs, the output may contain an error message (if "Continue On Fail" is enabled).
The node does not output binary data.
Dependencies
- Requires an active connection to the Fatture in Cloud API via an OAuth2 API credential configured in n8n.
- The node depends on the Fatture in Cloud service being accessible and the provided Company ID and Product ID being valid.
- No additional external dependencies beyond the API and credentials are required.
Troubleshooting
Common issues:
- Invalid or missing Company ID or Product ID will cause errors.
- Network or authentication failures with the Fatture in Cloud API.
- Product not found if the Product ID does not exist under the specified company.
Error messages:
"Unknown resource: product"— indicates the resource parameter was incorrect or unsupported."Fatture in Cloud API Error: <message>"— generic API error; check the status and details in the error description.- Validation errors from the API indicating missing or invalid parameters.
Resolutions:
- Verify that the Company ID and Product ID are correct and correspond to existing records.
- Ensure the OAuth2 credential is properly set up and has sufficient permissions.
- Check network connectivity and API availability.
- Enable "Continue On Fail" to handle errors gracefully in workflows.
Links and References
- Fatture in Cloud API Documentation (official API docs)
- n8n OAuth2 Credential Setup (for configuring API authentication)