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 All operation, it retrieves a list of products from the Zid platform, limited by a user-defined maximum number of results. This is useful for scenarios where you need to fetch product data for inventory management, reporting, or integration with other systems.
Use Case Examples
- Fetch all products up to a specified limit to synchronize product data with an external database.
- Retrieve product listings to display in a custom e-commerce frontend.
- Get product details for analytics or marketing purposes.
Properties
| Name | Meaning |
|---|---|
| Limit | Maximum number of product results to return, with a minimum of 1 and a maximum of 100. |
Output
JSON
json- Contains the product data returned from the Zid API, either as an array of products or a single product object.
Dependencies
- Requires OAuth2 credentials for Zid API authentication, specifically access and authorization tokens.
Troubleshooting
- Ensure OAuth2 credentials are properly configured; missing tokens will cause authentication errors.
- Limit parameter must be between 1 and 100; values outside this range may cause request failures.
- API request failures may occur due to network issues or invalid API endpoints; verify API availability and correct resource paths.
Links
- Zid API Documentation - Official documentation for Zid API endpoints and usage.