action beezup_catalog_get_random_products { label: "Get random product list" description: "We will return 10 products randomly selected with all product values" provider: beezup method: GET path: "/v2/user/catalogs/{storeId}/products/random" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["products"] properties: { products: { type: "array" items: { description: "Represent a catalog product" required: ["productId", "categoryId", "values", "exists"] properties: { categoryId: { type: "string" format: "guid" description: "The catalog category identifier" } exists: { type: "boolean" description: "Indicates if the product exists in the current catalog" } productId: { type: "string" format: "guid" description: "The product identifier" } values: { type: "object" description: "The key is the column identifier" } } } } } } }