Update Records

  • Once our “Map” is full, we need another line of code to update the Accounts record, using the map as a guide
  • update = zoho.crm.updateRecord(“Accounts”, accountId, accountUpdate);
  • update is the name of our update function, “Accounts” is the module API name, accountId is a variable that we created that stores the correct Account ID, and accountUpdate is the name of our map

More update record help

JSON Viewer