I’m stuck with creating a Web Request in Invoke Code activity. I found this topic on the forum, but I can’t import System.Web.Script.Serialization there is only System.Web
Dim myReq As HttpWebRequest
Dim myResp As HttpWebResponse
myReq = HttpWebRequest.Create(in_URL)
myReq.Method = "GET"
myReq.Headers.add("Content-Type", "application/json")
myResp = myReq.GetResponse
Dim myreader As New System.IO.StreamReader(myResp.GetResponseStream)
Dim myText As String
myText = myreader.ReadToEnd
console.WriteLine("myText: " + myText)