in SampleCPMProject/Program.cs [136:153]
        private static void GetPhoneContactPoint()
        {
            ContactName name = new ContactName()
            {
                FirstName = "testfnone",
                MiddleName = "second",
                LastName = "testlnone"
            };
            PhoneContactIdentity identity = new PhoneContactIdentity()
            {
                PhoneNumber = "+1234567890",                                   //The phone number should follow the E.164 standard
                Name = name
            };
            IEnumerable<PhoneContactPoint> result = cpmClient.GetPhoneContactPoint(identity, useFuzzyMatch: false).Result;
            Console.WriteLine(JsonConvert.SerializeObject(result));
        }