Actions38
- Order Actions
- Product Actions
- Customer Actions
- Address Actions
- Special Offer Actions
- Coupon Actions
- Shipment Actions
- Digital Product Actions
Overview
This node integrates with the Salla.sa e-commerce platform API, allowing users to manage various resources such as orders, products, customers, and more. Specifically, for the Order resource with the Cancel operation, the node enables cancelling an existing order by its ID.
Typical use cases include:
- Automatically cancelling orders based on certain conditions in a workflow.
- Integrating order cancellation into customer service automation.
- Syncing order status changes between Salla and other systems.
For example, if a customer requests to cancel an order, this node can be used within an n8n workflow to send the cancellation request to Salla automatically.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the order to cancel. This is required to specify which order should be cancelled. |
Output
The node outputs JSON data representing the response from the Salla API after attempting to cancel the order. This typically includes details about the cancelled order or confirmation of the cancellation action.
No binary data output is involved in this operation.
Dependencies
- Requires an API authentication credential configured in n8n to access the Salla API.
- The node uses HTTP requests to interact with the Salla API endpoints.
- Proper permissions on the API key are necessary to perform order cancellations.
Troubleshooting
Common issues:
- Providing an invalid or non-existent order ID will result in an error from the API.
- Insufficient API permissions may cause authorization errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Errors returned from the Salla API will be propagated by the node. For example, "Order not found" indicates the specified ID does not exist.
- Authentication errors suggest checking the API credentials.
Resolution tips:
- Verify the order ID is correct and exists in the Salla system.
- Ensure the API key has the necessary rights to cancel orders.
- Check network connectivity and retry if transient errors occur.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes