Simplicity and Control
Sync is now much easier to configure. Administrators have the ability to turn on or off contact sync for all their users under the system settings, and each user also has the ability to enable the contact sync feature if their administrator has it turned on for all users.Real-Time Contact Sync from Insightly to Google Contacts
When you turn on contact sync, all the contacts you have access to see and change in Insightly will be automatically copied to your Google Contacts list, and tagged with the label of “Insightly-Contacts” so you can distinguish them from all the other contacts in your Google Contacts list. Any time someone updates contact information or adds a new contact to Insightly, that data will be copied over into the Google contact list in real time, and when someone deletes a contact from Insightly, that contact will also be removed from your Google contact list.Mobile Sync Connectivity
For those users that add or update contacts on the go, Insightly has great native mobile apps available for free for both Google Android and Apple iOS phones and tablets. When you update or add a contact on your phone using either of these apps, those contacts will also be updated in your Google contact list too if you have this new Google sync turned on.Reliable and Scalable
Lastly we have re-engineered the sync system to be more reliable and scalable. We went to great lengths to make sure that the system works and contact information gets copied over in a timely manner no matter how many contacts you manage in Insightly. We update the user interface in real time so you know how many contacts the system has left to sync up and what the current count is. We also added a re-sync button so you can choose to have Insightly resync all contacts for you immediately in the event you inadvertently remove or change the Insightly contacts in your Google contact list.If you want to try out the new and improved contact sync feature yourself, you can turn it on under User Settings > Google Sync.
The new functionality now exports all the contacts. Is there a way to just sync a subset? And if not, is it possible to sync tags down to gmail to allow easy copying over to My Contacts (since only those are syncing down to my iphone)?
ReplyDeleteSame problem here, after enabling the new contact sync my "insightly-contacts" group is not being downloaded on my iPhone/Mac.
DeleteIt only'd work if I go to google apps and add each contact to the group "my contacts". But this must be done manually for each contact, so it's not the way to go.
At this time all the contacts are synced. I don't believe you can sync tags down to gmail so please contact our support team here -- http://help.insightly.com/submit-ticket/ -- and they can give you a definitive answer.
Deletesame problem here , I now have 40.000 contacts in Google ;-((
DeletePlease make a subset per USER and a way to flush the existing ones
This is our problem too. Our company doesn't *want* all our Insightly contacts synced to Google! Something we loved about Insightly is that each user could pick and choose which contacts to Sync.
DeleteLike Diederik said: Please make a subset per USER. Which they already had before they suddenly stopped it.
Contact sync from Google to Insightly apparently not on line yet
ReplyDeleteMy contacts aren't syncing in either direction aside from the initial run. That is, after running an initial sync, contacts show up in Google Apps. However, any subsequent changes in Insightly don't get written to Google Apps. Any changes in Google Apps don't get written to Insightly.
ReplyDeleteSame here! Bad design and bad testing :(
DeleteSame here!
DeleteGot same problem. It looks like any improvement Insightly makes, just makes it worse.
DeleteAfter 3 years of Google Contact Sync working just perfectly, the latest change has caused it to stop working. First of all, when you made the change to it, the default for companies like mine who have been using it for the past few years should have been "On", not "Off." Now I have to go into each User's account and re-sync each one. There's no telling what negative effect this might have on our Google accounts, if any. However, when attempting to re-syncn, it takes me through a 6 step process which just repeats itself endlessly with no resolution. At this
ReplyDeletepoint in time, no new contacts added to Insightly can be synced into any of our domain's Google accounts. I sent a message to support. I need to get this problem fixed ASAP. I would prefer if you make the fix on the back end, so I do not have to re-sync all 8 accounts.
totally agree with everything.
DeleteAgree as well.
DeleteThis sync process is awful apart from the fact it doesn't work it also removes my "Insightly-Contacts" from "My Contacts" making them invisible to my smart phone. It also doubles up the contacts every time I sync!
ReplyDeleteThe Google App integration was one of the reasons why I chose Insightly, but I'm not quite so sure now. If this bug is not fixed soon they will start to loose users.
Totally agree with what the others here said. My client is furious since the update to syncing has been rolled out.
ReplyDelete- the synced insightly contacts don't get added to "My Contacts", thus the iPhone cannot sync them. I need to add all contacts manually in Google Contacts to "My contacts" and then re-do that for every new contact from Insightly. Bad customer experience! Will you fix that?
- we realised that duplicates occured, but cannot understand why. Any clues?
- just to be sure, there is only one-way sync from insightly to Google contacts? no 2-way sync anymore?
- rolling out the change with only an email notification and no hint inside Insightly itself is not sufficient, when you set the default syncing option for each user to "off"
Please ASAP try to fix the issues, because my client is inclined to switch the CRM tool now.
It seems as though I wasn't the only one with this problem:
ReplyDelete* New Insightly contacts not being added to Google
* Deleted Insightly contacts not being removed from Google
* Insightly-Contacts not appearing on my mobile device. The only way to make them show on my phone is to manually add each to another Google Group
* Every time I click "Resync Contacts", the ones in the Insightly-Contacts folder on Google are replaced completely, meaning I have to re-add each to my Google Groups again
Essentially not only is there no Real time Sync or 2-way Sync... there is no "Sync" whatsoever because we are just importing contacts every time. This is a shame, became Google Contacts alone lacks the flexibility and organization that Insightly offers.
Hopefully this matter is taken under advisement by the Insightly team and is resolved in a timely manner.
Insightly seem to have a big problem with this.
ReplyDeleteAlso they do not appear on your mobile as when you sync Insightly remove the from "My Contacts"!
I've found a workaround until this mess gets fixed.
ReplyDeleteI managed to do a Google Script kinda solving the proble. It took me one complete day because I didn’t know about this language before, but after fighting a little bit with google scripts 6min maximum execution time I got it to work with a few lines of code.
My script picks all the contacts in insightly group and adds them to the My-contacts group. It makes it automatically every hour.
I tried more complex and elegant solutions but they were exceeding google’s limits for executing scripts.
This works for google apps accounts
1-You need to create a new project here: https://www.google.com/script/start/
2-Remove the code of the default file and paste this code:
function addToMyContactsFromInsightly() {
var insightlyGroup = ContactsApp.getContactGroup('Insightly-Contacts');
var myContactsGroup = ContactsApp.getContactGroup('System Group: My Contacts');
var insightlyContacts = insightlyGroup.getContacts();
for (var i=0; i<= (insightlyContacts.length-1) ; i++) {
insightlyContacts[i].addToGroup(myContactsGroup);
}
}
So the project will have only one file. You can press the play icon and the script will run, you can open gmail contacts in another browser and see how the contacts get updated in real time.
3-Set the trigger (clock icon) to execute this function every hour (you can try less, but maybe Google will block your if there are too many executions per day). You can also select to receive notifications on script execution failure. It depend on the number of contacts you have. You will have to adjust it if you receive failure notifications.
4-Go to google drive, share this google script project with the rest of users you want to have old-style Insightly sync. About the permissions, I think you must allow them to edit the file in order to execute it, but you can try to set only view permissions and see what happens.
5-Configure the same trigger for them.
I've been using this for a week and it's set and forget. I hope you guys find it useful.
Marc
Thanks so much for sharing that, Marc! Unfortunately, I'm not as technically inclined as you -- and I completely resent it that we have to engineer a home-grown solution because they decided to suddenly discontinue a service that we were all paying for (and still do).
DeleteStill, it's great that you shared it. I hope that some others here can find it useful. Thanks for sharing!
Marc, thanks this works quite well, but seems to drop or crash at various stages - usually time outs. Have you experienced that. We have about 5,500 contacts.
DeleteIain,
DeleteI only have to hanlde 2.100 contacts and sometimes I still get crashes every now and then too, it's normal. This script should be done in batches to avoid google execution time problems, but it was more difficult and I didn't have more time to spend on this.
As I said, this was a workaround until the contacts mess is fixed. What I cannot fix is the fact that contacts are syncing forever inside insightly and the newest contacts are the ones that take more time to sync or never are synced.
I don't understand why Insightly is not publicly apologising and say something like "we are fixing it to have the old behaviour as an option". As many people have said here in this post...contacts are crucial in a company, you cannot play with this because clients of your CRM will get frustrated.
Every time I see a post from Insightly twitter account I think they are going to say something about the problem but no, it's just their normal Marketing/News stuff.
Hi Marc, thanks for the swift response.
DeleteIt is unbelievable that they have done this. We, like many on this blog, selected Insightly because of its sychronisation capability with Google Contacts. I will just have to persevere, but I will be actively looking at alternatives.
Have had open support ticket since 6th September and still no resolution to the Gmail contact sync issue.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteHas Insightly said anything anywhere about what they're doing about this or where they're going with it?
ReplyDeleteIs this the way it's going to be? Are they thinking about going back to the old system? Are they moving toward the sync-by-category option that Apptivo has ( http://www.apptivo.com/contacts-sharing-new/advanced-setup/category-sync )?
This comment has been removed by the author.
ReplyDeleteSame here.
ReplyDeletePrevious google contact sync was doing what was needed:
-2 way sync
-native iOS sync was ok
With a minor annoyance : it was slow to sync sometimes.
Now you've killed the "raison d'ĂȘtre" of the sync, its core features to fix the speed issue, and sorry, but yes we prefer to use the native iOS contact app than your iOS app to change/update some contact info.
Such product decision is eroding the confidence we have in you. Show us you are a great company, and fix it ASAP, and restore this trust.
BR
Thomas
This is totally unacceptable. You have managed to screw up my company contacts royally. My contacts have been "syncing in progress" for a week. And then having to run the script is a step too far. Either fix it or reverse this update and re-instate when it works properly.
ReplyDeleteOne week until I start looking for another system.
OK, I have sorted this out by switching off the calendar sync! Go figure....
DeleteBut the initial problem with not adding contacts to My Contacts persists. Damn you Insightly.
Since Insightly changed Google Contact sync, I've noticed some of my Insightly Contacts are missing from Google Contacts. I don't even care anymore because I plan to get rid of this virus of a company fairly soon. Insightly is the most self absorbed company I have ever done business with. They care not about the Customer's needs. If they did, they would ask for our feedback and be open and honest when they make a mistake; instead, when a problem arises they pretend like there is no problem at all, then obfuscate or redirect the support request, making it seem like YOU are the problem, or YOU are insane. We are currently looking around for alternatives and hope to make a switch soon. WorkEtc. seems like a much better alternative. Pricier -- but you get what you pay for. Daniel Barnett, the CEO, does all that he can to please the customer. Anthony, take notice. Your product is another casualty of Management by Objectives. Pay the investors back and take control!
ReplyDelete