Shopier icon

Shopier

Interact with Shopier API

Actions5

Overview

This node interacts with the Shopier API to retrieve product information. Specifically, the "Get" operation under the "Product" resource fetches details of a single product by its ID. This is useful in scenarios where you want to obtain up-to-date product data such as pricing, description, availability, or other metadata directly from Shopier within an automated workflow.

Practical examples include:

  • Fetching product details to display on a custom dashboard.
  • Synchronizing product information between Shopier and another system.
  • Triggering downstream processes based on specific product attributes.

Properties

Name Meaning
Product ID The ID of the product to retrieve. This is a required string input specifying which product's details to fetch from Shopier.

Output

The node outputs JSON data representing the retrieved product's details. The structure typically includes all relevant fields returned by the Shopier API for a product, such as its identifier, name, price, description, stock status, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Shopier API.
  • Needs an API authentication credential configured in n8n (an API key or token).
  • The node uses the base URL https://api.shopier.com for API requests.
  • Proper network access to Shopier's API endpoints is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing Product ID will cause the API call to fail.
    • Incorrect or expired API credentials will result in authentication errors.
    • Network connectivity problems can prevent successful API communication.
  • Error messages:

    • "The operation "get" is not supported for resource "product": Indicates a misconfiguration of the operation or resource parameters.
    • API error responses related to invalid product IDs or permissions will be surfaced as execution errors.
  • Resolutions:

    • Ensure the Product ID is correctly specified and exists in Shopier.
    • Verify that the API credentials are valid and have sufficient permissions.
    • Check network connectivity and firewall settings allowing outbound requests to Shopier.

Links and References

  • Shopier API Documentation (Please refer to the official Shopier API docs for detailed endpoint and data structure information.)

Discussion