Skip to content

Instantly share code, notes, and snippets.

@jeznag
Created June 3, 2015 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeznag/e16cb7ad1d56e68cef75 to your computer and use it in GitHub Desktop.
Save jeznag/e16cb7ad1d56e68cef75 to your computer and use it in GitHub Desktop.
Add notes to Zoho CRM contact
void workflowspace.add_notes_to_a_contact(int contact_id)
{
note_text = "Sample note";
note_obj = map();
note_obj.put("SEMODULE", "Contacts");
note_obj.put("SEID", input.contact_id);
note_obj.put("Note Title", "Test Title");
note_obj.put("Note Content", note_text);
create_resp = zoho.crm.create("Notes", note_obj);
info create_resp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment