Update a product
PUT https://api.ecartapi.com/api/v2/products/447
Creates a product for woocommerce.
productType: simple, grouped, external and variable. Default is simple.
status: draft, pending, private and publish. Default is publish.
visibility: visible, catalog, search and hidden. Default is visible.
tags: To create a product with tags you require before create the tag and retrieve the id.
options: To create a new product with options you can create the attribute before in admin panel and retrieve the id like the example of Color option in body (recommended). Too is posible send a option without creates a attribute but this will be only for this product, Size option example.
Request Body
{"product"=>{"name"=>"product simple w discount updated", "sku"=>"testSimple2", "description"=>"Description 1", "productType"=>"simple", "quantity"=>"201", "price"=>"151", "offers"=>[{"price"=>{"value"=>"141"}}], "status"=>{"visibility"=>"visible", "status"=>"publish"}, "categoryId"=>"41", "tags"=>["20"], "dimensions"=>{"weight"=>"1", "length"=>"10", "width"=>"10", "height"=>"10"}}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Authorization | string |
RESPONSES
status: OK
{"success":true,"product":{"id":"447","productUserId":null,"sku":"testSimple2","name":"product simple w discount updated","subName":null,"upc":null,"gtin":null,"description":null,"currency":null,"productType":"simple","quantity":"201","price":"151","cost":null,"discount":null,"dimensions":{"width":"10","height":"10","length":"10","weight":"1"},"units":{"width":null,"height":null,"length":null,"weight":null},"category":{"id":"41","name":"ejemplo","all":[{"id":"41","name":"ejemplo"}]},"tags":["test2"],"status":{"id":null,"visibility":"visible","active":"active","status":"publish","ecartapiId":"1","ecartapi":"active","hasOptions":null,"inStock":null},"variants":[],"options":[],"associatedItems":[],"logistic":{"me1Suported":null,"mode":null,"type":null,"free":"false","direction":null,"dimensions":null,"rates":[],"settings":[]},"images":[{"id":"446","url":"https://woocommerce3.envia.com/wp-content/uploads/2024/10/T_2_front-7.jpg","variantIds":[],"ecartapiUrl":"http://localhost:3000/api/v2/products/447/images/446"}],"imageUrl":"https://woocommerce3.envia.com/wp-content/uploads/2024/10/T_2_front-7.jpg","condition":null,"link":"https://woocommerce3.envia.com/product/product-simple-w-discount/","dates":{"createdAt":"2024-10-02T20:17:35","updatedAt":"2024-10-02T23:04:29"},"vendor":null,"sellOutStock":"true","locations":[],"internationalShipment":[]}}