Creator FieldMap not pushing more than 6 fields to Zoho CRM

Creator FieldMap not pushing more than 6 fields to Zoho CRM

Hey everyone,

I have a fieldmap which then pushed my data to CRM (updates fields). It wont update more than 6 fields. As you can see I have tried clearing the Fieldmap but only the first 6 will push across. Any help appreciated
  1. myField2Map = map();

    //Convert the lookup fields to string

    Stringinv_make_model  =  Solar_Inverter_Details  [ID == input.Inverter_Make_Model];

    myField2Map.put("Inverter Make/Model", Stringinv_make_model.Inverter_Make_Model);

    //function to push to CRM - set to update

    myField2Map.put("AC Isolator/Breaker Rating", input.AC_breaker_rating);

    myField2Map.put("MPPT 1 - Parallel Strings", input.MPPT_1_Parallel_Strings);

    myField2Map.put("DC Isolator Rating (A)", input.Recommended_DC_Isolator_Rating_A);

    myField2Map.put("Cable Size (mm2)", input.AC_Cable_Size);

    myField2Map.put("System Design Complete", true);

    zohoget = zoho.crm.getRecordById("Leads", input.Zoho_CRM_ID);

    ID_Customer = (zohoget).get("LEADID");

    zohoResp = zoho.crm.updateRecord("Leads", ID_Customer, myField2Map);

    //create another field map

    myField2Map.clear();

    myField2Map.put("Design Min Temperature", input.min_temp);

    myField2Map.put("Design Max Temperature", input.max_temp);

    myField2Map.put("MPPT 1 - Panels/String", input.MPPT_1);

    myField2Map.put("MPPT 1 - Operating Voltage", input.MPPT_1_Operating_Voltage);

    myField2Map.put("MPPT 1 - Output (W)", input.MPPT_1_Output_W);

    zohoResp = zoho.crm.updateRecord("Leads", ID_Customer, myField2Map);