Get Job Results

Get Job Results

Get 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
URI
GET
https://{api_host}/v0alpha1/jobs/{job_id}
COPY
Path Parameters
string
job_id
Required

The unique identifier for one job result.


Responses
200

A successful retrieval of one job result, at this time an empty 200 response.

Operation doesn't return any data structure

400

The job was either improperly formed or it was properly formed and one or more requests contained in the job failed. In the latter case the response indicates which succeeded and which failed (and why).

Returns Array of CMMultiResult of type(s) application/json
[
    {
        "result": {
            "cell_id": "string",
            "parameter_name": "string",
            "parameter_type": "string",
            "operation": "string"
        },
        "status": "string",
        "detail": "string"
    }
]

404

The requested job does not exist.

Returns ProblemDetails of type(s) application/problem+json
{
    "type": "string",
    "title": "string",
    "status": 400,
    "detail": "Required field 'counter_names' missing.",
    "instance": "string"
}
string
type
Optional

A URI representing the type of the problem.

string
title
Required

A short summary of the error.

number
status
Required

The HTTP Response code associated with this error.

string
detail
Required

A detailed description of the error.

string
instance
Optional

An optional URI of the instance involved in the problem.