action akeneo_get_app_catalog_product_uuids { label: "Get the list of product uuids" description: "This endpoint allows you to get the list of uuids of products contained in a catalog. Please, note that a disabled catalog can return an HTTP 200 with a payload containing an error message, for more details see the App Catalog section." provider: akeneo method: GET path: "/api/rest/v1/catalogs/{id}/product-uuids" encoding: json input: { type: "object" properties: { id: { type: "string" } limit: { type: "string" } search_after: { type: "string" } updated_after: { type: "string" } updated_before: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }