Get Script Execution Stream
During the execution of a script, the script execution engine collects streams that are produced by the running script. There are five stream types: information, error, warning, debug, verbose.
Request
URLURL
https://{api_host}/api/script-executions/{id}/streams/{stream-type}
Parameters
Parameters
string
id
Required
Unique identifier of the script execution
Response
Response
Response BodyResponse Body
200 OK returns
array
of
StreamRecord
of type application/json
{
"message": "string",
"time": "string"
}
string
message
Optional
Message of the stream records.
string
time
Optional
Time the message was received by the script execution engine. String representing time in format ISO 8601.
cURL Command
curl https://{api_host}/api/script-executions/{id}/streams/{stream-type}