Retrieve the STDIO ouput of a job

post/jobs/{jobId}/output
Internal-Use Only

Retrieves the STDIO text from STDOUT and STDERR output from a running job.

Request Samples

1

Response Samples

1{
2 "errors": [
3 "This is an error message\n"
4 ],
5 "output": [
6 "This is one line of output\n",
7 "This is the next line of output\n"
8 ],
9 "version": 1
10}

Path Parameters

NameTypeRequiredDescription
jobId
string
true

The ID of the job.

Responses

StatusMeaningDescription
200OKThe request succeeded.Schema
400Bad RequestThe operation is not permitted on the specified job possibly because output was not requested. See the returned error response for more information.Schema
404Not FoundThe specified job is not found.Schema
406Not AcceptableThe requested response type is not acceptable. See the returned error response for more information and acceptable response types.Schema
409ConflictThe operation is not permitted on the specified job because the job is not in the running state. See the returned error response for more information.Schema