[{"label":"Latest (0.1.0)","version":"latest"}]
cric-r1
Get Job Results
DescriptionGet the results of one job. For notification-style data management interactions the URI is a one-use URI for retrieving the job results and is the only URL that a consumer should use when interacting with this service.
For other interaction styles the URI may allow multiple uses.
Request
URLURL
https://{api_host}/v0alpha1/jobs/{job_id}
Path Parameters
Path Parameters
string
job_id
Required
The unique identifier for one job result.
Response
Response
Response BodyResponse Body
200 OK
Returns
JobResult
of type application/json;stream=true
A successful retrieval of one job result, presented as a transfer-encoding chunked stream of multiple JSON objects, each one as described in the schema.
Response Headers
string
transfer-encoding
The transfer-encoding
header identifies that
this response is using chunked encoding and
may be treated as a stream.
Errors
ProblemDetails
404
The requested job does not exist.
Code Samples
cURL Command
curl https://{api_host}/v0alpha1/jobs/{job_id}
[{"label":"Latest (0.1.0)","version":"latest"}]
cric-r1