Actions17
- Customer Actions
- Order Actions
- Shipping Actions
- Payment Actions
- Cart Actions
Overview
This node interacts with the OpenCart API to perform operations related to customers, such as retrieving customer information or adding new customers. It is useful in e-commerce workflows where automation of customer data management is needed, for example, fetching customer details for order processing or adding new customers from a form submission.
Use Case Examples
- Retrieve customer information by customer ID to use in order fulfillment.
- Add a new customer to the OpenCart store from a registration form.
Properties
| Name | Meaning |
|---|---|
| Resource | The OpenCart API resource to operate on, here fixed as 'Customer' for customer-related operations. |
| Operation | The specific action to perform on the customer resource, such as getting or adding customer information. |
Output
JSON
json- The JSON response from the OpenCart API containing customer data or confirmation of the operation.
Dependencies
- Requires OpenCart API credentials including base URL, username, and password for authentication.
Troubleshooting
- Invalid JSON input for customer data will cause errors; ensure JSON is correctly formatted.
- API authentication errors may occur if credentials are incorrect or missing.
- Network or timeout issues may cause request failures; check API availability and timeout settings.
Links
- OpenCart API Documentation - Official documentation for OpenCart API endpoints and usage.
