action brandlovers_get_product_sku_seller_id { label: "Returns details of a single product using the seller `skuSellerId`" description: "Returns detailed information of a single product with the seller `skuSellerId`. This service will return a json document with product detail, status, price, invetory among other infomarion availble in the Brand Lovers marketplace" provider: brandlovers method: GET 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 } }