customerID = 141995000000022001;
send = true;
itemList = List:Map();
itemList.add({ "ItemName" : "Test", "ItemDescription" : "Sample Description", "Price" : 50 });
itemList.add({ "ItemName" : "Test1", "ItemDescription" : "Sample Description", "Price" : 50 });
estimateInfo = { "EstimateDate" : zoho.currentdate, "ReferenceNumber" : 123, "Custom.Body" : "This is the mail content", "Custom.Subject" : "This is mail subject",
"Description" : "Comment added to an invoice", "Notes" : "Estimate Notes will be shown in PDF", "Terms" : "Terms and Conditions apply", "Items" : itemList };
resp = zoho.invoice.createEstimate(customerID, estimateInfo , send);
How do I find this customer ID? I want the customer id to be auto generated based on
whatever the customer info has been completed on the form, so this ID doesn't exist as
far as I know?