2019.2

Table Of Contents
Supported properties
l response
l status
l statusText
l timeout (ms). Default: 1 minute.
Supported methods
create() Creates a new instance of
ScriptableHTTPRequest.
l open(String method, String url, String
user, String password)
l open(String verb, String url, String
userName, String password, String[]
headers, String[] headervalues, String
requestBody)
Opens a HTTP request.
Note
If you don't use a user name and
password, pass empty strings:
request.open
("GET",url,"","");
l send()
l send(String requestBody)
Sends an HTTP request and returns the
HTTP status code. Blocked call.
getResponseHeader(String header) Gets the ResponseHeader by name.
getResponseHeaders() Returns the full response headers of the
last HTTP request.
getRequestBody() Gets the HTTP request body (for POST
and PUT).
setRequestHeader(String requestHeader,
String value)
Adds an additional HTTP request
header.
Page 439