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 to manage various resources, including Special Offers. Specifically, the "Delete" operation for the "Special Offer" resource allows users to remove a special offer from their Salla store by specifying its ID.
Common scenarios where this node is beneficial include:
- Automating the removal of expired or obsolete special offers.
- Managing promotional campaigns programmatically.
- Cleaning up test or temporary offers in bulk workflows.
For example, a user can set up an automation that deletes a special offer when a campaign ends, ensuring the offer no longer appears on the storefront.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the special offer to delete. This is required to specify which special offer will be removed. |
Output
The node outputs a JSON object representing the response from the Salla API after attempting to delete the special offer. Typically, this will confirm successful deletion or provide error details if the operation failed.
No binary data output is produced by this operation.
Dependencies
- Requires an API authentication token credential configured in n8n to authenticate requests to the Salla API.
- Depends on the internal helper function to make HTTP requests to the Salla API endpoints.
- No additional external dependencies are needed beyond the configured API credentials.
Troubleshooting
Common issues:
- Providing an invalid or non-existent special offer ID will result in an error from the API.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues may prevent the node from reaching the Salla API.
Error messages and resolutions:
"The operation "delete" is not supported for special offers!"β This indicates an unsupported operation was requested; ensure the operation parameter is correctly set to "delete".- API errors related to authorization typically mean the API key or token is invalid or expired; verify and update credentials.
- If the node throws an error about the ID parameter, ensure it is provided and correctly formatted.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes