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, and more. Specifically, for the Order - Get operation, it retrieves detailed information about a single order by its unique ID.

This is useful in scenarios where you want to fetch the current status, details, or metadata of a specific order within your automation workflows. For example, after receiving an order confirmation email, you might use this node to pull full order details to update your CRM or trigger further processing steps.

Properties

Name Meaning
ID The unique identifier of the order to retrieve. This is required to specify which order's details should be fetched.

Output

The output is a JSON object representing the order data returned from the Salla API. It contains all available fields describing the order, such as customer info, items purchased, order status, totals, timestamps, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an API authentication credential configured in n8n to connect to the Salla API.
  • Uses the Salla REST API endpoints to fetch order data.
  • The node depends on helper functions (sallaApiRequest) to handle HTTP requests and pagination internally.

Troubleshooting

  • Common issues:

    • Invalid or missing order ID will cause the API request to fail.
    • Authentication errors if the API key or OAuth2 credentials are not set up correctly.
    • Network or connectivity problems may prevent successful API calls.
  • Error messages:

    • "The operation "get" is not supported for orders!" — This would indicate a misconfiguration or unsupported operation; however, "get" is supported for orders.
    • API error responses (e.g., 404 Not Found) typically mean the specified order ID does not exist.
  • Resolutions:

    • Ensure the "ID" property is correctly set with a valid order ID.
    • Verify that the API credentials are properly configured and have sufficient permissions.
    • Check network connectivity and API endpoint availability.

Links and References

Discussion