action akeneo_get_published_products { label: "Get list of published products" description: "This endpoint allows you to get a list of published products. Published products are paginated and they can be filtered." provider: akeneo method: GET path: "/api/rest/v1/published-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_count: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }