카카오모빌리티의 다중경유지 길찾기 관련 문의드립니다

안녕하세요 카카오모빌리티 다중경유지 길찾기 관련 문의 드립니다.

        public static async Task<Routes> GetWaypointRoute(string coord, string RestAPIkey)
        {

            Routes resultRoad = null;

            try
            {
                using (var client = new HttpClient())
                {
                    string key = "KakaoAK " + RestAPIkey;
                    var ServiceUrl = "https://apis-navi.kakaomobility.com/v1/waypoints/directions";
                    client.DefaultRequestHeaders.Add("Authorization", key);
                    var json = ConvertToJSON(coord);
                    var content = new StringContent(json, Encoding.UTF8, "application/json");
                    var response = await client.PostAsync(ServiceUrl, content);
                    
                    var responseContent = await response.Content.ReadAsStringAsync();
                    resultRoad = JsonConvert.DeserializeObject<Routes>(responseContent);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }

            return resultRoad;
        }

그런데 var response = await client.PostAsync(ServiceUrl, content); 이부분에서 계속 진행상태로 나옵니다. ServiceUrl, Content 등 봐도 제대로 입력한게 맞는데 무엇이 문제인지요?

안녕하세요. 카카오모빌리티 기술 제휴 담당자입니다.

보내 주신 내용으로는 요청값에 이상은 없어 보입니다.
coord 변수로 어떤 값이 넘어 오는지 알 수 있을까요?

해당 값 전달해 주시면 확인해 보겠습니다.
감사합니다.