## Delete Products `ProductDeleteProductsResponse Products.DeleteProducts(ProductDeleteProductsParams?parameters, CancellationTokencancellationToken = default)` **delete** `/api/v2/public/products` Deletes products by product numbers. ### Parameters - `ProductDeleteProductsParams parameters` - `IReadOnlyList? productNumber` The product numbers to target. ### Returns - `class ProductDeleteProductsResponse:` Standard success response returned by mutation endpoints. - `string? Data` Optional data payload returned by the operation. - `string? Message` Human-readable message describing the result. - `Boolean Success` Indicates whether the operation completed successfully. ### Example ```csharp ProductDeleteProductsParams parameters = new(); var response = await client.Products.DeleteProducts(parameters); Console.WriteLine(response); ```