I have problem getting all contact endpoints using the Lync API. Here's my code:
static void Main(string[] args)
{
LyncClient client = LyncClient.GetClient();
var endpoints = (List<object>)client.Self.Contact.GetContactInformation(ContactInformationType.ContactEndpoints);
}
Here's my Lync setup:
However when I debug, I only get two endpoints:
Is this a bug in the API? Or am I missing anything?