Hi @Anonymous I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to accept the answer .
Issue:
Could not extract the local time and the local time abbreviations from the returned API result set
Solution:
Extracting the converted local time from the returned result gave the expected result. Here is the code to extract the data using java script.
Uri geocodetime = new Uri(string.Format("https://dev.virtualearth.net/REST/v1/timezone/?q={0}&key={1}", query, key));
var response1 = client.GetAsync(geocodetime).Result;
string json1 = await response1.Content.ReadAsStringAsync();
// Parse the JSON response to extract the address
dynamic data2 = Newtonsoft.Json.JsonConvert.DeserializeObject(json1);
string timez = data2.resourceSets[0].resources[0].timeZoneAtLocation[0].timeZone[0].convertedTime.localTime;
Console.WriteLine(timez);
Console.ReadLine();
If I missed anything please let me know and I'd be happy to add it to my answer, or feel free to comment below with any additional information.
I hope this helps!
If you have any other questions, please let me know. Thank you again for your time and patience throughout this issue.