I am using # as programming language for interacting with Google Contacts API. I am storing some numeric value in "ExtendedProperty" named "externalid". Can any one please help me with some code snippet to search contact based on Extended Property named "externalid" ?
For example, i created a contact with "Extended Property" named "externalid" with value "123456". I tried to search contact using below code snippet, but it didn't return me any result.
query.Query = "123456";
Feed<Contact> feed = cr.Get<Contact>(query);
In case we use code snippet below it works. Here "Tarun" is the name of my contact with "externalid" having value "12345".
query.Query = "Tarun";
Feed<Contact> feed = cr.Get<Contact>(query);
Can any one please help me in this?