I am attempting to update a Gmail Contact based on your sample code:
Dim contact As Contact = client.GetContact("http://www.google.com/m8/feeds/contacts/xxxxxr%40gmail.com/base/xxxxxxx")
contact.JobTitle = "Manager IT"
contact.DepartmentName = "Customer Support"
contact.CompanyName = "Updated Company"
contact.Profession = "Changed Job..."
client.UpdateContact(contact)
When I run UpdateContact I got this error -
GoogleClient error [400] invalid: Eactly one of non-empty 'rel', 'label' is required for relation
Is there any documents that tell me what 'labels' must have, but if I am using Email.API, would labels be transparent to me?
Many thanks