Deletes a product list by id, optionally archiving it or removing only its header.
Boolean ProductLists.DeleteProductList(ProductListDeleteProductListParamsparameters, CancellationTokencancellationToken = default)
DELETE/api/v2/public/stores/{store_number}/productlists
Deletes a product list by id, optionally archiving it or removing only its header.
ProductListDeleteProductListParams parameters = new()
{
StoreNumber = "store_number",
ProductListID = 0,
};
var response = await client.ProductLists.DeleteProductList(parameters);
Console.WriteLine(response);trueReturns Examples
true