Actions38
- Order Actions
- Product Actions
- Customer Actions
- Address Actions
- Special Offer Actions
- Coupon Actions
- Shipment Actions
- Digital Product Actions
Overview
The node integrates with the Salla.sa e-commerce platform API to manage various resources, including addresses. Specifically, for the Address resource and the Update operation, this node updates an existing address record on the Salla platform by sending the specified changes.
This is useful in scenarios where you need to programmatically modify address details such as name, description, or status without manually accessing the Salla dashboard. For example, you might update a customer's shipping address after receiving new information or correct an address entry automatically based on external data.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the address resource to update. |
| Additional Fields | Optional fields to update on the address: |
| - Name: The name associated with the address. | |
| - Description: A textual description of the address. | |
| - Status: The current state of the address; possible values are Active, Inactive, or Draft. |
Output
The node outputs a JSON array containing the updated address object(s) returned from the Salla API. Each object reflects the current state of the address after the update operation.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Salla.sa API.
- Requires an API authentication credential (e.g., OAuth2 token) configured in n8n to authorize requests.
- Uses internal helper functions to perform HTTP requests to the Salla API endpoints.
Troubleshooting
Common issues:
- Invalid or missing address ID will cause the update to fail.
- Providing invalid field values (e.g., unsupported status) may result in API errors.
- Network or authentication failures can prevent successful communication with the Salla API.
Error messages:
"The operation "update" is not supported for addresses!"β This indicates a misconfiguration or unsupported operation; ensure the resource is set to Address and operation to Update.- API error messages related to authorization or validation will be passed through; verify API credentials and input data correctness.
Resolution tips:
- Double-check the address ID exists and is correct.
- Validate that additional fields conform to expected formats and allowed values.
- Ensure the API credential is valid and has sufficient permissions.
Links and References
- Salla API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes