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