The Products API allows you to manage the complete lifecycle of products in your Venddor store. You can create, retrieve, update, and delete products, as well as manage related entities such as variations, options, images, and features.
https://www.venddor.com.br/api/2.0/products
Retrieves a list of products with support for filtering, sorting, and pagination.
Retrieves detailed information about a specific product.
Creates a new product in the system.
Updates an existing product's information.
Deletes a product from the system.
Below is the basic structure of a product object:
{ "product_id": "423", "product_code": "LAPTOP-PRO-15", "product": "Professional Laptop 15\"", "company_id": "1", "product_type": "P", // P - physical, D - digital, S - service "status": "A", // A - active, D - disabled, H - hidden "list_price": "1499.99", "price": "1299.99", "category_ids": ["42", "56"], "main_category": "42", "tax_ids": ["3"], "tracking": "B", // B - track with options, O - track without options "amount": "100", "weight": "2.1", "length": "14.2", "width": "9.8", "height": "0.8", "shipping_freight": "0", "is_edp": "N", // Y - downloadable product, N - not downloadable "edp_shipping": "N", // Y - requires shipping, N - no shipping "unlimited_download": "N", "free_shipping": "N", "zero_price_action": "R", // R - require selection, P - allow add to cart "product_features": { // Features array }, "main_pair": { // Main image details }, "image_pairs": { // Additional images }, "short_description": "Powerful laptop for professional use", "full_description": "Detailed product description...", "meta_keywords": "laptop, professional, business", "meta_description": "High-performance laptop for business professionals", "search_words": "notebook computer laptop business", "page_title": "Professional Laptop 15\" - High Performance", "options": [ // Product options array ], "product_options": [ // Available options IDs ], "variation_features": [ // Variation features ] }
Retrieves all images associated with a product.
Adds a new image to a product.
Retrieves all features associated with a product.
Adds a new feature to a product.
Retrieves all options associated with a product.
Adds a new option to a product.
search_words
field to include alternative terms that customers might use when searching for your product, even if those terms don't appear in the product name or description.