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
.
list<GetJobsBatchRequestElement>
object
object
map<JobRid, Job>
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"}]'
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"
}
}
}