Livo icon

Livo

Interact with Livo API for orders, products, customers, and repairs

Overview

This node interacts with the Livo API to manage product data within an e-commerce context. Specifically, the "Get Product Detail" operation retrieves detailed information about a single product by its unique identifier. This is useful when you need to fetch comprehensive product details such as name, SKU, price, category, and description for display, processing, or integration purposes.

Common scenarios:

  • Fetching product details to display on a website or app.
  • Retrieving product information before updating or deleting it.
  • Integrating product data into other systems like inventory management or reporting tools.

Example:
You want to get full details of a product with ID "12345" to show on a product page or to verify its current pricing and stock keeping unit (SKU).

Properties

Name Meaning
Product ID The unique identifier of the product to retrieve details for. This is a required string input.

Output

The node outputs a JSON object containing the detailed information of the requested product as returned by the Livo API. The structure typically includes fields such as:

  • id: Product identifier
  • name: Product name
  • sku: Stock Keeping Unit code
  • price: Price of the product
  • category: Product category
  • description: Description of the product
  • Other product-specific metadata as provided by the API

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the Livo API.
  • The node expects the base environment URL and API key to be configured in the credentials.
  • HTTP requests are made with JSON content type and include the API key in headers.

Troubleshooting

  • Invalid Product ID: If the product ID does not exist or is incorrect, the API may return an error or empty response. Verify the product ID is correct.
  • Authentication Errors: Ensure the API key credential is valid and has necessary permissions.
  • Network Issues: Check connectivity to the Livo API endpoint and SSL certificate validation settings.
  • API Rate Limits: Excessive requests might be throttled; handle errors accordingly.
  • Error Messages: The node returns error messages from the API in the output JSON under an error field if continueOnFail is enabled.

Links and References

Discussion