Salla icon

Salla

Interact with Salla.sa e-commerce platform API

Actions38

Overview

This node integrates with the Salla.sa e-commerce platform API, allowing users to perform various operations on different resources such as orders, products, customers, addresses, special offers, coupons, shipments, and digital products.

Specifically for the Order - Get operation, the node retrieves detailed information about a single order by its ID. This is useful in scenarios where you want to fetch the current status, items, customer details, or other metadata related to a specific order in your Salla store.

Practical examples:

  • Automatically fetching order details after receiving a new order notification.
  • Retrieving order information to update an external CRM or ERP system.
  • Using order data to trigger fulfillment workflows or send custom notifications.

Properties

Name Meaning
ID The unique identifier of the order to retrieve. This is required for the "Get" operation.

Output

The node outputs a JSON object representing the order details as returned by the Salla API. This typically includes fields such as order ID, customer information, order items, status, totals, timestamps, and other relevant metadata.

If multiple items are returned (in other operations like "Get All"), the output will be an array of such objects.

The node does not output binary data for this operation.

Dependencies

  • Requires an API authentication credential configured in n8n to connect to the Salla API.
  • Uses HTTP requests to interact with the Salla REST API endpoints.
  • No additional external dependencies beyond the configured API credentials.

Troubleshooting

  • Common issues:

    • Invalid or missing order ID: The node requires a valid order ID; ensure the ID exists in your Salla store.
    • Authentication errors: Verify that the API credentials are correctly set up and have sufficient permissions.
    • Network or API downtime: Check connectivity and Salla API status if requests fail.
  • Error messages:

    • "The operation "get" is not supported for orders!" β€” This would indicate an internal misconfiguration or unsupported operation; should not occur for "get".
    • API error responses (e.g., 404 Not Found) when the order ID does not exist.

To resolve errors, confirm the order ID is correct, check API credentials, and review any error messages returned from the API.

Links and References

Discussion