action akeneo_get_app_catalog_products_uuid { label: "Get a product related to a catalog" description: "This endpoint allows you to get a specific product related to a catalog. In the Enterprise Edition, permissions based on your app settings are applied on the product you request. Please, note that a disabled catalog can return an HTTP 200 with a payload containing an error message, for more details see the App Catalog section." provider: akeneo method: GET path: "/api/rest/v1/catalogs/{id}/products/{uuid}" encoding: json input: { type: "object" properties: { id: { type: "string" } uuid: { type: "string" } } required: ["id", "uuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }