action akeneo_get_app_catalog_products { label: "Get the list of products related to a catalog" description: "This endpoint allows you to get the list of products related to a catalog. Products are paginated and they can be filtered. In the Enterprise Edition, permissions based on your app settings are applied to the set of products you request. 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}/products" 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 } }