Actions24
Overview
This node integrates with the Leanios API to perform operations on various resources such as orders, products, transactions, and more. Specifically for the Order resource with the Get operation, it retrieves order data from the Leanios system by making an authenticated HTTP GET request to the appropriate API endpoint.
Common scenarios where this node is useful include:
- Fetching detailed information about a specific order or multiple orders in Leanios.
- Automating workflows that require order data retrieval for reporting, processing, or synchronization with other systems.
- Integrating Leanios order data into broader business automation pipelines within n8n.
For example, you can use this node to get details of an order by its ID or list all orders under a given subdomain.
Properties
| Name | Meaning |
|---|---|
| Subdomain | The Leanios account subdomain to target (e.g., "dummy"). This defines the API base URL. |
Note: The node also requires selecting the Resource (order) and Operation (get), but these are fixed per your input.
Output
The node outputs the JSON response returned by the Leanios API for the requested order(s). The output is structured as an array of JSON objects representing order data fields as provided by the API.
- The
jsonoutput contains the order details fetched from the API. - No binary data output is produced by this node.
Dependencies
- Requires an active Leanios API credential with username and password for basic authentication.
- Needs network access to the Leanios API endpoint at
https://{Subdomain}.leanios.com/api/v1/orders. - The node depends on n8n's HTTP request helper methods to make authenticated API calls.
Troubleshooting
- Invalid Credentials Error: If authentication fails, verify that the API credentials (username and password) are correctly configured and have sufficient permissions.
- 404 Not Found: Occurs if the specified order ID does not exist or the subdomain is incorrect. Double-check the order ID and subdomain spelling.
- Network Errors: Ensure that the n8n instance has internet access and can reach the Leanios API endpoint.
- Unexpected Response Format: If the API changes or returns errors, the node may throw an error. Review the error message for clues and check the Leanios API status.
Links and References
- Leanios API Documentation (example placeholder link; replace with actual if available)
- n8n HTTP Request Node documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/