action akeneo_delete_products_uuid_uuid { label: "Delete a product" description: "This endpoint allows you to delete a given product. In the Enterprise Edition, permissions based on your user groups are applied to the product you try to delete." provider: akeneo method: DELETE path: "/api/rest/v1/products-uuid/{uuid}" encoding: json input: { type: "object" properties: { uuid: { type: "string" } } required: ["uuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }