Populating information from CRM Modules

Populating information from CRM Modules

So I am trying to use code that I have used previously with no luck.  

In the past I have used the CRM Lookup to populate fields in a creator form from the Leads Module.  It works perfect every time.  Now I am trying to do the same but pull the information to/from the Accounts module and get a generic error every time I try it. 

Code that works: 
crmResp = zoho.crm.getRecordById(("Leads"), input.Zoho_CRM_ID);
input.Company = (crmResp.get("Company")).toString();
input.First_Name = (crmResp.get("First Name")).toString();
input.Libratis_Client = (crmResp.get("Libratis Client")).toString();
input.Last_Name = (crmResp.get("Last Name")).toString();
input.Call_Attempts = (crmResp.get("Call Attempts")).toLong();
input.Phone = (crmResp.get("Phone")).toString();
input.Email = (crmResp.get("Email")).toString();
input.Title = (crmResp.get("Designation")).toString();
input.Prospects_Status = (crmResp.get("Prospects Status")).toString();
input.LEADID = (crmResp.get("LEADID")).toString();

Code that doesn't work: 
crmResp = zoho.crm.getRecordById(("Accounts"), input.Zoho_CRM_ID);

Any suggestions?  Does the accounts module not communicate?  Or have I got some syntax incorrect? 


Thanks for any help!