action akeneo_get_product_models_code { label: "Get a product model" description: "This endpoint allows you to get the information about a given product model. In the Entreprise Edition, since the v2.0, permissions based on your user groups are applied to the product model you request." provider: akeneo method: GET path: "/api/rest/v1/product-models/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } with_quality_scores: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }