Rvops icon

Rvops

Integração Rvops

Overview

This node integrates with the "Rvops" system to manage products among other resources. Specifically, for the Produto (Product) resource and the Update a Product operation, it allows updating existing product records by specifying the product ID and the properties to update.

Typical use cases include:

  • Automating updates to product details such as name, price, SKU, description, or custom properties.
  • Synchronizing product information from external systems into Rvops.
  • Bulk updating multiple product attributes in workflows without manual intervention.

For example, you can update the price and description of a product identified by its ID, ensuring your product catalog stays current.

Properties

Name Meaning
Autenticação Do Cliente Authentication method to access the API; currently supports "Access Token".
ID Do Produto The unique identifier of the product to update. This is required to specify which product to modify.
Propriedades A collection of properties to update on the product. Each property consists of:
- Nome Da Propriedade Name or ID: The property name or ID to update (selectable from available product properties).
- Novo valor: The new value to assign to the specified property.

Note: The list of updatable product properties includes fields like product name, price, SKU, frequency, unit cost, URL, months term, description, and last updated timestamp, except for immutable fields like product ID and last update date.

Output

The node outputs JSON data representing the updated product object. The structure includes:

  • id: The unique identifier of the updated product.
  • properties: An object containing all the product's properties after the update.

Example output JSON structure:

{
  "id": "12345",
  "properties": {
    "name": "Updated Product Name",
    "price": "99.99",
    "sku": "SKU123",
    "description": "New description text",
    ...
  }
}

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential (referred generically as an API authentication token) for authenticating requests to the Rvops API.
  • The node uses internal helper functions to make HTTP requests to the Rvops API endpoints.
  • No additional external services are required beyond the Rvops API access.

Troubleshooting

  • Invalid Product ID: If the provided product ID does not exist, the API will likely return an error indicating the product was not found. Verify the product ID before running the node.
  • Authentication Errors: Ensure the API token used is valid and has sufficient permissions to update products.
  • Property Validation: Attempting to update read-only or non-existent properties may cause errors. Use the provided property selection options to avoid invalid fields.
  • Network Issues: Connectivity problems with the Rvops API endpoint will result in request failures. Check network connectivity and API availability.
  • Continue On Fail: The node supports continuing execution on failure if configured, returning error details in the output JSON under an error field.

Links and References


This summary focuses exclusively on the "Produto" resource and the "Update a Product" operation as requested.

Discussion