// Assemble the URLstring url = ''Uri uri = new Uri(url); // Call out APIHttpClient http = new HttpClient();var response = await http.GetAsync(uri);string xml = await response.Content.ReadAsStringAsync(); // Response -> string / json -> deserializevar serializer = new DataContractSerializer(typeof(Root));var ms = new MemoryStream(Encoding.UTF8.GetBytes(xml)); var result = (Root)serializer.ReadOb..