Get job output details

get

/services/rest/v1/jobs/{jobInstanceID}/outputs

Get the job output details in JSON format.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Returns the output details of a job in JSON format.
Body ()
Root Schema : schema
Back to Top

Examples

The following example shows how to get the output of a job by submitting a GET request on the REST resource using cURL. You must specify the ID of the job.

curl -i \
     --header 'Authorization: Bearer <token>' \
     --header 'Content-Type: application/json' \
     --request GET 'https://hostname/xmlpserver/services/rest/v1/jobs/35646/outputs'

Example of the Response Body

* Connection #0 to host hostname left intact
{"jobOutputList":{"item":[{"burstKey":"","created":"2023-05-09T04:00:48.482Z","deleted":"false","documentDataAvailable":"true","documentDataCompressed":"false","documentDataContentType":"pdf","jobId":"35646","jobName":null,"lastUpdated":"2023-05-09T04:00:51.134Z","outputId":"13870","outputName":"Output1","parentOutputId":null,"status":"S","statusDetail":" DOCUMENT_PROCESSING_SUCCESSFUL [INSTANCE_ID=bip.bi_server1] "}]}}
Back to Top