Hi,
I am using the API to create/update an Estimate that contains additional charges. I am trying to update the charge description, and even if the API allows this, the charge description is not being updated (all other fields are fine).
Sample code:
…
ChargeDescription = “New Description”;
estimateUnitPrice.Description = ChargeDescription;
estimateUnitPrice.NumberOfUnits = NumberOfUnits;
estimateUnitPrice.EstimatePricePerUnit = PricePerUnit;
estimateUnitPrice.Taxable = Taxable;
quote.Save();