Actions5
- Product Actions
- Order Actions
Overview
This node interacts with the Shopier API to retrieve information related to orders, specifically allowing you to get details about an order transaction. It is useful in scenarios where you need to fetch transactional data for a specific order, such as verifying payment status, auditing transactions, or integrating order transaction details into other workflows.
For example, you might use this node to:
- Retrieve the transaction details of a particular order after a customer completes a purchase.
- Automate reconciliation processes by fetching transaction data from Shopier.
- Trigger follow-up actions based on transaction status or details.
Properties
| Name | Meaning |
|---|---|
| Order ID | The unique identifier of the order whose transaction details you want to retrieve. |
Output
The node outputs JSON data containing the transaction details of the specified order. This typically includes fields such as transaction ID, payment status, amount, date, and other relevant metadata returned by the Shopier API for that order's transaction.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Shopier API.
- The node makes HTTP requests to
https://api.shopier.com. - Proper configuration of the API authentication credentials within n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing Order ID: Ensure the Order ID provided exists and is correctly formatted.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API downtime: Check connectivity and Shopier API status if requests fail.
Error messages:
"The operation "getTransaction" is not supported for resource "order": This indicates a misconfiguration; ensure the Resource is set to "Order" and Operation to "Get Transaction".- API error responses will be surfaced as execution errors; review the error message for details such as invalid credentials or non-existent order IDs.
Links and References
- Shopier API Documentation (Please verify the exact URL as it may vary)
- n8n documentation on creating custom nodes