Actions17
- Customer Actions
- Order Actions
- Shipping Actions
- Payment Actions
- Cart Actions
Overview
This node interacts with the OpenCart API to manage shipping-related operations within an e-commerce platform. Specifically, for the 'Shipping' resource and 'Get Methods' operation, it retrieves the available shipping methods configured in the OpenCart store. This is useful for workflows that need to dynamically fetch shipping options for orders or customers, such as during checkout processes or shipping method validations.
Use Case Examples
- A workflow that fetches available shipping methods to present options to a customer before finalizing an order.
- An automation that retrieves shipping methods to calculate shipping costs or validate shipping availability based on customer location.
Properties
| Name | Meaning |
|---|---|
| Resource | The OpenCart API resource to operate on, here set to 'Shipping'. |
| Operation | The specific action to perform on the selected resource, here 'Get Methods' to retrieve shipping methods. |
Output
JSON
json- The JSON response containing the available shipping methods from the OpenCart API.
Dependencies
- OpenCart API credentials including baseUrl, username, password, and optional timeout, retries, and retryDelay settings.
Troubleshooting
- Invalid JSON input errors may occur if the shipping address or other JSON fields are malformed; ensure JSON inputs are correctly formatted.
- API authentication errors if credentials are incorrect or missing; verify OpenCart API credentials are properly configured.
- Network or timeout errors if the OpenCart API is unreachable or slow; check network connectivity and API server status.
Links
- OpenCart Shipping API Documentation - Official documentation for OpenCart shipping API endpoints and usage.
