Deluge Script for pulling in a lookup field from another module

Deluge Script for pulling in a lookup field from another module

I'm sure this has been answered somewhere along the way, but I've searched through the threads and came up empty for this specific request.

I have a module "". This module is related to the "Cases" module. The Inspections module has a lookup field which bring in the specific case it is related to. When that case is brought over. I would also like information in the case record to be brought over too (account, street, city, state, zip). The "account" field is a lookup - tied back to the "accounts" module. 

Essentially, this is what I'm trying to do, but i realize it doesn't work. I know somehow i need to bring in the Case_Account Id, and not a string.

Update_ServicePM = zoho.crm.updateRecord("Inspections",ServicePM_id,{"Street_from_Form":case_street,"City_from_Form":case_city,"State_from_Form":case_state,"Zip_from_Form":case_zip,"Account":Case_Acount});

Please help!