Products

In this section you will find the APIs referring to the creation, edition and elimination of Products. This information will only update the base information within Ventiapp.

Add Product

POST https://ventiapi.azurewebsites.net/api/product/addproduct

This method is used to create a base product in Ventiapp. If the required fields are not available, the service will throw an error.

Headers

Request Body

{
    "productId": 3182093,
    "sku": "AA123",
    "price": 99.99,
    "title": "Olla a presion Gris",
    "ean": null,
    "upc": "41123123",
    "longDescription": "Descripcion larga de prueba",
    "shortDescription": "Descripción corta de prueba",
    "baseStock": 66,
    "images": ["url imagen 1","url imagen 2"],
    "brand": "Greycon",
    "weight": 2400,
    "height": 30,
    "width": 20,
    "depth": 20
}

Última actualización