Skip to content Skip to sidebar Skip to footer

Add Organization Info To Google Contacts Api

I have the contact API working with Google, so for example: contact = gdata.contacts.data.ContactEntry() contact.name = gdata.data.Name(given_name=gdata.data.GivenName(text='Frank'

Solution 1:

This is the correct way of adding organization details:

contact.organization= gdata.data.Organization(name=gdata.data.OrgName(text='My Company'), title=gdata.data.OrgTitle(text='Chief Fun Officer'), rel=gdata.data.WORK_REL)

Post a Comment for "Add Organization Info To Google Contacts Api"