Adds or updates lines on an existing product list.
ProductListUpdateProductListLinesResponse ProductLists.UpdateProductListLines(ProductListUpdateProductListLinesParamsparameters, CancellationTokencancellationToken = default)
POST/api/v2/public/stores/{store_number}/productlists/{id}
Adds or updates lines on an existing product list.
ProductListUpdateProductListLinesParams parameters = new()
{
StoreNumber = "store_number",
ID = 0,
};
var response = await client.ProductLists.UpdateProductListLines(parameters);
Console.WriteLine(response);{
"code": 0,
"data": "data",
"message": "message",
"status": "status"
}Returns Examples
{
"code": 0,
"data": "data",
"message": "message",
"status": "status"
}