action akeneo_get_products_uuid { label: "Get list of products" description: "This endpoint allows you to get a list of products. Products are paginated and they can be filtered. In the Enterprise Edition, permissions based on your user groups are applied to the set of products you request." provider: akeneo method: GET path: "/api/rest/v1/products-uuid" encoding: json input: { type: "object" properties: { attributes: { type: "string" } limit: { type: "string" } locales: { type: "string" } page: { type: "string" } pagination_type: { type: "string" } scope: { type: "string" } search: { type: "string" } search_after: { type: "string" } with_attribute_options: { type: "string" } with_completenesses: { type: "string" } with_count: { type: "string" } with_quality_scores: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }