Actions28
- Companies Actions
- Products Actions
- Orders Actions
- Subscriptions Actions
- Contacts Actions
- Invoices Actions
- Usage Summaries Actions
Overview
This node is designed to find and retrieve order details by a specific Order Id from the Pax8 Partner API. It is useful in scenarios where you need to fetch detailed information about a particular order, such as verifying order status, reviewing order contents, or integrating order data into other workflows. For example, an IT service provider could use this node to automatically pull order details for billing reconciliation or customer support follow-up.
Properties
| Name | Meaning |
|---|---|
| Order Id | The unique identifier for an order record. This is required to specify which order to retrieve. |
Output
The node outputs JSON data representing the order details corresponding to the provided Order Id. The structure of the JSON output will reflect the order's properties as returned by the Pax8 Partner API, typically including fields like order metadata, items, status, dates, and related customer information.
If the API supports it, binary data output is not indicated in the source code, so the output is expected to be purely JSON.
Dependencies
- Requires an API key credential for authenticating with the Pax8 Partner API.
- The node makes HTTP requests to the base URL
https://api.pax8.com/v1. - Proper configuration of the API authentication credentials within n8n is necessary for successful operation.
Troubleshooting
Common Issues:
- Invalid or missing Order Id: The node requires a valid Order Id; providing an incorrect or empty value will result in errors or no data found.
- Authentication failures: If the API key credential is invalid or expired, the node will fail to authenticate.
- Network issues: Connectivity problems to the Pax8 API endpoint can cause request failures.
Error Messages:
- Unauthorized or 401 errors indicate issues with API credentials.
- 404 Not Found may occur if the Order Id does not exist.
- Timeout or network errors suggest connectivity problems.
To resolve these, verify the Order Id correctness, ensure the API key credential is valid and properly configured, and check network connectivity.
Links and References
- Pax8 Partner API Documentation (general reference for API endpoints and data structures)
- n8n documentation on API Credentials for setting up authentication tokens