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, addresses, special offers, coupons, shipments, and digital products. Specifically for the Address resource with the Delete operation, the node deletes an existing address by its unique ID.
Common scenarios where this node is beneficial include automating the cleanup of outdated or incorrect customer addresses, managing address data programmatically in workflows, or integrating address management into broader e-commerce automation processes.
For example, a workflow could automatically delete an address when a customer account is removed or when an address is flagged as invalid in another system.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the address resource to delete. This is required to specify which address will be deleted. |
Output
The output of the node after deleting an address is a JSON object representing the response from the Salla API. Typically, this will confirm the deletion or provide details about the deleted address. The exact structure depends on the API's response but generally includes status information.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Salla.sa e-commerce platform API.
- Requires an API authentication token configured in n8n credentials (an OAuth2 or similar API key credential).
- The node uses internal helper functions to make HTTP requests to the Salla API endpoints.
Troubleshooting
Common issues:
- Providing an invalid or non-existent address ID will likely result in an error from the API indicating the resource was not found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues can prevent successful API calls.
Error messages:
"The operation "delete" is not supported for addresses!"— This would occur if the operation parameter is incorrectly set; ensure the operation is exactly "delete".- API errors related to authorization or permissions should be resolved by verifying the API key or OAuth token.
- If the node throws an error about the ID parameter, ensure that the ID is provided and correctly formatted.
Links and References
- Salla API Documentation (general reference for API endpoints and responses)
- n8n documentation on creating custom nodes