action akeneo_get_product_models { label: "Get list of product models" description: "This endpoint allows you to get a list of product models. Product models are paginated. 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/product-models" 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" } with_quality_scores: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }