Actions11
Overview
This node interacts with the Zid API to perform operations on orders, products, and customers. Specifically for the 'Order' resource with the 'Get' operation, it retrieves a single order by its ID. This is useful for workflows that need to fetch detailed information about a specific order, such as order status, customer details, or order contents, enabling automation of order processing or customer service tasks.
Use Case Examples
- Retrieve an order by its ID to check its status before shipping.
- Fetch order details to update inventory or notify customers.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the order to retrieve. |
Output
JSON
json- The JSON object representing the retrieved order details from the Zid API.
Dependencies
- Requires OAuth2 credentials for Zid API authentication, including access token and authorization token.
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 API endpoint availability, and ensure the provided order ID exists.
Links
- Zid API Documentation - Official documentation for Zid API endpoints and authentication.