Salla icon

Salla

Interact with Salla.sa e-commerce platform API

Actions38

Overview

This node integrates with the Salla.sa e-commerce platform API to manage digital products. Specifically, the "Create" operation for the "Digital Product" resource allows users to add new digital products to their Salla store. This is useful for automating product management workflows such as bulk uploading digital goods or integrating product creation into larger automation pipelines.

Practical examples include:

  • Automatically creating new digital products when a new item is added in an external system.
  • Syncing digital product catalogs from other platforms into Salla.
  • Creating digital products with specific metadata like name, description, and status via automated workflows.

Properties

Name Meaning
Additional Fields Collection of optional fields to set on the digital product:
- Name: The name/title of the digital product
- Description: A textual description of the digital product
- Status: The current state of the product; options are "Active", "Inactive", or "Draft"

Output

The output is a JSON array where each element represents the response from the Salla API after creating a digital product. The structure corresponds to the created digital product's data returned by the API, typically including identifiers, names, descriptions, statuses, and other relevant metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an API authentication credential (OAuth2 token) configured in n8n to connect securely to the Salla API.
  • Depends on the internal helper functions to make HTTP requests to the Salla API endpoints.
  • The node expects network connectivity to the Salla.sa platform.

Troubleshooting

  • Common issues:

    • Missing or invalid API credentials will cause authentication failures.
    • Providing invalid or incomplete additional fields may result in API validation errors.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "The operation "create" is not supported for digital products!" — indicates an unsupported operation was requested; ensure the operation parameter is correctly set to "create".
    • API error messages related to missing required fields or invalid values should be resolved by verifying input parameters.
  • Resolution tips:

    • Verify that the OAuth2 credential is properly set up and authorized.
    • Double-check the input properties for correctness and completeness.
    • Ensure the Salla API service is reachable from your environment.

Links and References

Discussion