Parse the given JSON and fill the content of the variable with it.
The JSON string
The variable where to put the parsed JSON
true if JSON was properly parsed
Send an asynchronous request to the specified URL, with the specified (text)
body, method and contentType (defaults to application/x-www-form-urlencoded
).
The result is stored in the specified response variable. Any error is stored in
the specified error variable.
The URL to send the request to.
The content to be sent.
The method to use ("GET", "POST", "PUT", "HEAD", "DELETE", "PATCH", "OPTIONS")
The content type. Defaults to application/x-www-form-urlencoded
if empty.
The variable where to store the response text.
The variable where to store the error message or status code (if status >= 400).
Convert a variable to JSON.
The variable to convert to JSON
The JSON string representing the variable
Generated using TypeDoc
Use
variable.fromJSON
instead.