Calling an API from ASP.NET Web Form is very easy.
WebClient wc = new WebClient();
string urlData = wc.DownloadString("http://xxx.xxx.xx.xx/sssss/getResponse.do?ID=testing");
But can we call an API from SQL Server stored procedure.
If yes then how can we call an API from a SQL Server stored procedure and how can we get API response?
question from:https://stackoverflow.com/questions/22067593/calling-an-api-from-sql-server-stored-procedure