action brandlovers_put_product_sku_seller_id_prices { label: "Allows seller to update prices of a single SKU" description: "Allows seller to set the SKU prices (MSRP and/or offer price). All prices must be informed in cents. No commas or periods are accepeted. For example one dollar should be informed as 100. Same as $1,2345.67 must be informed solely as 1234567" provider: brandlovers method: PUT path: "/product/{skuSellerId}/prices" encoding: json input: { type: "object" properties: { authorization: { type: "string" } skuSellerId: { type: "string" } } required: ["authorization", "skuSellerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }