2022.1

Table Of Contents
DataMapper script may have finished executing and gone out of scope.
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).
Page 465