URL = "https://httpbin.org"; URL = URL + "/get"; ParametersStructure = New Structure("param1,param2", "text", 10); HTTPClient = OPI_HTTPRequests .NewRequest() .Initialize(URL) .SetURLParams(ParametersStructure) .ProcessRequest("GET"); Response = HTTPClient.ReturnResponseAsJSONObject(); Log = HTTPClient.GetLog(True);