Create or Update a product Kit

Method for creating or updating a KIT

Instructions

Use to sell multiple products as a kit, always provide the "parent" product sku, if a product has variations, KIT variations will automatically be created, each SKU code of each variation of the KIT is generated dynamically.

After the KIT is generated, if the KIT has variations, it will no longer be possible to change the structure of products that make up the KIT.

Request body example

{"sku":"KIT-12345",
 "ean":"21313213131",
 "name":"Nome do kit",
 "external":"Codigo_do_produto_pai_no_outro_sistema",
 "quantity":2,
 "special_price":9.90,
 "price":12.45,
 "short_description":"Descrição resumida do produto",
 "description": "descrição detalada do produto",
 "brand":"marca",
 "cost":2.21,
 "warranty_time":3,
 "warranty_message":"3 meses de garantia",
 "link":"http://site.com.br/esseproduto",
 "available":1,
 "categories":[
 	{"name":"categoria base"},
 	{"name":"categoria base > subcatgoria"},
 	{"name":"categoria base > subcatgoria > tipo"},
 	{"name":"categoria base > outrasubcategoria > outrotipo"}
 ],
 "handling_time":1,
 "manufacture_time":1,
 "dimension":{
 	"length":22,
 	"width":22,
 	"height":22,
 	"weight":22
 },
 "attributes":
 	[
 		{
 			"code":"gender","label":"Genero","value":{"code":"f","label":"feminino"}
 		} 
 	],
 "photos":[
 	{
 		"url": "http://www.site.com.br/enderecoimagem.jpg",
    	"name": "imagem 1 do produto",
    	"title": "imagem 1 do produto",
    	"order": 1,
    	"external": "http://www.site.com.br/enderecoimagem.jpg"
 	},
 	{
 		"url": "http://www.site.com.br/enderecoimagem2.jpg",
    	"name": "imagem 2 do produto",
    	"title": "imagem 2 do produto",
    	"order": 2,
    	"external": "http://www.site.com.br/enderecoimagem.jpg"
 	}
 ],
 "package_skus":[
 		{
 		"sku":"KA8994",
 		"quantity": "1" 	
 		},
 			{
 		"sku":"KA8993",
 		"quantity": "1"
 		}
	],
 "price_table":[
 	 {
 	 "code":"mercadolivre",
 	 "label":"Preço para o mercadolivre",
 	 "price":22.50,
 	 "special_price":14.32,
 	 "action":"overwrite"
 	},
 	 {
 	 "code":"b2w",
 	 "label":"Preço para a b2w",
 	 "action":"increase",
 	 "percentage":10
 	}
 	]
}
Language
Click Try It! to start a request and see the response here!