Search documentation
karat

+

K

User Documentation ↗
Version 2.0

Get Jobs Batch

POST/api/v2/orchestration/jobs/getBatch
Warning

This endpoint is in preview and may be modified or removed at any time. To use this endpoint, add preview=true to the request query parameters.

Execute multiple get requests on Job.

The maximum batch size for this endpoint is 500.

Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:orchestration-read.

Query parameters

preview
boolean
optional

Enables the use of preview functionality.

Request body

body
list<GetJobsBatchRequestElement>
Hide child attributes

Hide child attributes

GetJobsBatchRequestElement
object
Show child attributes

Show child attributes

Response body

GetJobsBatchResponse
object
Hide child attributes

Hide child attributes

data
map<JobRid, Job>
optional
Show child attributes

Show child attributes

Examples

Request

Copied!
1 2 3 4 5 curl -X POST \ -H "Content-type: application/json" \ -H "Authorization: Bearer $TOKEN" \ "https://$HOSTNAME/api/v2/orchestration/jobs/getBatch?preview=true" \ -d '[{"jobRid":"ri.foundry.main.job.aaf94076-d773-4732-a1df-3b638eb50448"}]'

Response

Copied!
1 2 3 4 5 6 7 8 9 10 11 { "data": { "ri.foundry.main.job.aaf94076-d773-4732-a1df-3b638eb50448": { "startedTime": "2003-05-06T12:34:56.789Z", "jobStatus": "WAITING", "buildRid": "ri.foundry.main.build.a4386b7e-d546-49be-8a36-eefc355f5c58", "finishedTime": "2003-05-06T12:34:56.789Z", "rid": "ri.foundry.main.job.aaf94076-d773-4732-a1df-3b638eb50448" } } }