action brandlovers_put_product_sku_seller_id_status { label: "Enable/disable a single product in the Marketplace" description: "Update product status in the Marketplace. Set to `true` to enable, `false` to disable sale." provider: brandlovers method: PUT path: "/product/{skuSellerId}/status" encoding: json input: { type: "object" properties: { authorization: { type: "string" } skuSellerId: { type: "string" } } required: ["authorization", "skuSellerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }