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