action brandlovers_get_products_status { label: "Returns seller products status in the marketplace" description: "Returns a list with seller products status. Please note that this endpoint will not return all details of each product, just the skuSellerId and status. Also please note that this endpoint will return 250 products per call. For full details of a given procuct use GET /product/{skuSellerId}" provider: brandlovers method: GET path: "/products/status" encoding: json input: { type: "object" properties: { authorization: { type: "string" } limit: { type: "string" } offset: { type: "string" } } required: ["authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }