Hi
Thanks for the input.My framework doesn't have keyword test. It uses scripts.
I am sharing the code by which I am able to retrieve information from QA Complete using Rest API using Get request. I am unable to Update the result in QA Complete
Sub Main()
Dim restReq, url, userName, password
Set restReq = CreateObject("Microsoft.XMLHTTP")
' Replace <node> with the address of your INSTEON device
' Additionally, any REST command will work here
url = "https://rest.qacomplete.smartbear.com/rest-api/service"
url = "https://rest.qacomplete.smartbear.com/rest-api/service/automation/v2/hosts/799/runs/581441/items/1"
' If auth is required, replace the userName and password values
' with the ones you use on your ISY
userName = ""
password = ""
restReq.Open "GET", url, False, userName, password
restReq.send
MsgBox restReq.responseText
End Sub