action akeneo_get_products { 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, since the 2.0, permissions based on your user groups are applied to the set of products you request." provider: akeneo method: GET path: "/api/rest/v1/products" 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 } }