list = zoho.crm.getRecords("Contacts");
for each item in list
{
id=item.get("CONTACTID");
resp = zoho.crm.updateRecord("Contacts",id,{ input.newField : item.get(input.oldField) });
}
However, getRecords() is limited to 200 records (and 20 being the default).