HttpReq
HttpReq - Send a HttpRequest using "GET" method
script:HttpReq(url,p1,v1,p2,v2,....)
Does a "get" request on an URL with optionalø parameters. The result from the "GET" is returned
Parameters:
p1,v1,p2,v2... these are optional nae=value pairs that will be appended to the URL.
Example:
script:HttpReq('https://myserver.com','user','xyz','date',\@sys_date)
Will do a "GET" request on: https://myserver.com?user=xyz&date=20220101