action brandlovers_post_products { label: "Allows new products from the seller to be loaded into the marketplace" description: "This enpoint to creates new products in the Marketplace using `skuSellerId` as a primary key. This enpoint expects a json document with array of products. The server will load each product as an individual item that can be manipulated using your own `skuSellerId`. All requests to This endpoint are idenpontent with respect of the `skuSellerId`, this means that once a `skuSellerId` is created it cannot be re-created using this tool. In order to update use the PUT method with the correct `skuSellerId`. You can also use the POST /product to create a single product per request" provider: brandlovers method: POST path: "/products" encoding: json input: { type: "object" properties: { authorization: { type: "string" } } required: ["authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }