List Script Executions
DescriptionRetrieves all available script execution records
Request
URL
Authentication
Response
Response BodyResponse Body
200 OK
array
of
ScriptExecution
of type application/json
{
"end_time": "string",
"id": "string",
"name": "string",
"output_objects_format": "text",
"reason": "string",
"runspace_id": "string",
"script": "string",
"script_parameters": {},
"start_time": "string",
"state": "success"
}
Content of the script.
Unique identifier of the runspace where script execution is performed.
Unique identifier for the object.
Name of the script execution. It is optional to give a name of the script execution on create request. If name was not specified on the script execution creation, the field has null value.
Reason for the current script execution state. In most of the cases reason field will be empty. In case of an error or cancellation reason will contain information about the reason that caused script execution to become in this state.
Time at which the script execution was finished. String representing time in format ISO 8601.
List of arguments that will be passed to the script. If script content defines parameters argument can be provided. The parameter names defined in the script content should match the names specified in this list.
Time at which the script execution was started. String representing time in format ISO 8601.
ScriptExecutionState defines possible script execution states.
Possible values are: success , error , running , canceled
Errors
Unauthorized
Server Error