Actions11
Overview
This node interacts with the Zid API to perform operations on products, orders, and customers. Specifically, for the Product resource with the Get operation, it retrieves a product by its ID. This is useful for workflows that need to fetch detailed information about a specific product from the Zid platform, such as inventory management, product detail display, or integration with other systems.
Use Case Examples
- Fetch a product's details by its ID to update a product catalog.
- Retrieve product information to synchronize with an external database.
Properties
| Name | Meaning |
|---|---|
| ID | The ID of the product to retrieve. |
Output
JSON
json- The JSON object containing the product details retrieved from the Zid API.
Dependencies
- Requires OAuth2 credentials for Zid API authentication, specifically accessToken and authorizationToken.
Troubleshooting
- Error 'No credentials found!': Ensure that the Zid OAuth2 API credentials are properly configured in n8n.
- Error 'Missing required tokens': Verify that the OAuth2 authentication tokens (accessToken and authorizationToken) are correctly set and valid.
- Unknown operation error: Confirm that the operation parameter is set to a supported value ('get' for this case).
- API request failures: Check network connectivity and Zid API status, and ensure the product ID is valid.
Links
- Zid API Documentation - Official Zid API documentation for reference on endpoints and data structures.