action beezup_catalog_store_index { label: "Get the index of the catalog API for this store" description: "The operation will give you all the operations you will be able to do on this store for this API." provider: beezup method: GET path: "/v2/user/catalogs/{storeId}" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "object" required: ["links", "status"] properties: { links: { type: "object" required: ["self"] properties: { autoImportInfo: { type: "object" } catalogColumns: { type: "object" } categories: { type: "object" } computeExpression: { type: "object" } customColumns: { type: "object" } importations: { type: "object" } inputConfiguration: { type: "object" } products: { type: "object" } randomProducts: { type: "object" } self: { type: "object" } startImportation: { type: "object" } } } status: { type: "string" description: "Indicates the status of the catalog store.\n* OK: If the latest importation is a success!\n* Failed: If the latest importation has failed !\n* Outdated: If the latest succeed importation is later than 1 day.\n" enum: ["OK", "Failed", "Outdated"] } } } }