Assuming activeusers is required, the following 3 results were found.
with some common snippets of code that use the InvokeConnector and do things we can't do in shortcode. List CRM Users (ActiveUsers) Note that this is somewhat superseded by: l_Users = zoho.crm.getRecords("users") or r_User =...
API v1 userResp = getUrl(("https://crm.zoho.com/crm/private/xml/Users/getUsers?authtoken=xxxxxxxxxxx&scope=crmapi&type=ActiveUsers")); users = userResp.executeXPath("/users/user"); if ((users != null) && (users != "")) { userList = users.toList("-|-");...
... "; // // get all active users in CRM m_UserMapping = Map(); v_Endpoint = "https://www.zohoapis.eu/crm/v4/users?type=ActiveUsers"; r_Users = invokeurl [ url :v_Endpoint type :GET connection:"zcrm" ]; l_UserUpdates = List(); for each m_User in...