action beezup_catalog_get_product_by_sku { label: "Get product by Sku" provider: beezup method: GET path: "/v2/user/catalogs/{storeId}/products" encoding: json input: { type: "object" properties: { sku: { type: "string" } storeId: { type: "string" format: "guid" } } required: ["sku", "storeId"] additionalProperties: false } output: { description: "Represent a catalog product" required: ["categoryId", "exists", "productId", "values"] 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" } } } }