action brandlovers_put_product_sku_seller_id_stock { label: "Update a single product stock" description: "Update a single product inventory information. Products with zero stock will not be eligible for sale." provider: brandlovers method: PUT path: "/product/{skuSellerId}/stock" encoding: json input: { type: "object" properties: { authorization: { type: "string" } skuSellerId: { type: "string" } } required: ["authorization", "skuSellerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }