Actions13
Overview
This node interacts with the FreeWebStore API to retrieve order information. Specifically, the 'Order - Get' operation fetches details of a single order by its ID. This is useful for scenarios where you need to access specific order data, such as order status, customer details, or items in the order, for further processing or reporting within an automation workflow.
Use Case Examples
- Retrieve details of a specific order by providing its Order ID to monitor order status or update records in a CRM system.
- Fetch order information to trigger notifications or generate invoices automatically.
Properties
| Name | Meaning |
|---|---|
| Order ID | The unique identifier of the order to retrieve. This is a required field for the 'Get' operation on the 'Order' resource. |
Output
JSON
orderId- The unique identifier of the retrieved order.status- The current status of the order.customer- Details about the customer who placed the order.items- List of items included in the order.total- Total amount for the order.createdAt- Timestamp when the order was created.
Dependencies
- Requires an API key credential for FreeWebStore API authentication.
Troubleshooting
- Common issues include invalid or missing Order ID, resulting in errors from the API indicating the order was not found.
- API key authentication failures if the provided API key is incorrect or expired.
- Network or connectivity issues preventing access to the FreeWebStore API endpoint.
Links
- FreeWebStore API Documentation - Official API documentation for FreeWebStore, detailing endpoints, parameters, and response formats.