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