So my main form called customer and inside the main form, there have two sub-form fields called Trade-in Vehicle and Desired Vehicle. Also, those sub-form are using a look-up field (Customer ID) link to the main form.
Here is my code for pushing data from creator to CRM without those sub-form data :
Customerinfo = {
"ID_Number":input.Customers_ID,
"Status":input.Status1,
"Status_Logs":input.Status_Logs,
...
...
...
...
"Previous_Employment_Duration":input.Previous_Employment_Duration
};
response = zoho.crm.createRecord("Contacts",Customerinfo);