Hi,
You should be able to update an organization or job title
individually. But the organization label can not be empty for adding.
What library (or programing language) are you using? Can you send the
error you are getting?
For example, in Java, this will update only the organization name:
URL entryUrl = new URL("
http://www.google.com/m8/feeds/contacts/user
%
40domain.com/full/2d1f64a0cc22924");
ContactEntry contactEntry = myService.getEntry(entryUrl,
ContactEntry.class );
Organization organization = contactEntry.getOrganizations().get(0);
organization.setOrgName(new OrgName("OrgNameTest"));
contactEntry.getOrganizations().set(0,organization);
contactEntry.update();
I was also able to add only a organization name, including the label:
Organization organization = new Organization();
organization.setOrgName(new OrgName("OrgNameTest2"));
organization.setLabel("other");
contactEntry.getOrganizations().add(organization);
contactEntry.update();
Cheers,
Julian