action brandlovers_put_product_sku_seller_id { label: "Update product details" description: "Update a single product information such as name, brand, attribute, dimension, etc. Please note that data from your request will be merged with existing data. This allows you to easliy update only certain fields without the need to re-inform the other unchanged fields. For example in order to update just the field `title` simply send just this field with new information, remaining fields will not be changed. In order to erase an item the field must be informed as its default value, for example in order to erase the `videos` field must be sent as videos:[]. The `skuSellerId` field is always mandatory in the path and in the product json Object." provider: brandlovers method: PUT path: "/product/{skuSellerId}" encoding: json input: { type: "object" properties: { authorization: { type: "string" } skuSellerId: { type: "string" } } required: ["authorization", "skuSellerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }