Hi,
I have an app in Creator that on record-add creates a Sales Order in CRM with a defined product and defined quantity.
As the quantity can be modified after the Sales Order creation, I would like that the updated quantity gets sent to the Sales Order updating the quantity for that product.
My problem is that I don't exactly which is the key to be used for the product quantity. So far I tried this both "Quantity" and "Products.Quantity" without success.
Here below the code:
update_quantity_response = zoho.crm.updateRecord("Salesorders", input.salesOrderID, { "Quantity" : new_quantity });
Can anybody help?
Thanks a lot!
Andrea