|
Scripts can be executed:
If there are any execution errors, these errors will be displayed in the web UI. Note that, a scheduled script can also be run on-demand from its details page by clicking on "Run" button.
Passing in Parametersif your script requires parameters, they can be passed in as a standard query string for a GET request (ex:http://localhost:12222/RapidSuite/script/run/ScriptProcessingParams?param1=value1¶m2=value2), or in a POST request from an HTML FORM or Javascript. These parameters will be accessed from a params map in the script as: def severity = params.severity; def name = params.name; def customerid = params.customerid; ... |
Add Comment