After submit a batch job, it may contains several jobs. Use this request to get a list of jobs with the specific batch ID:
curl -i -X GET \
-H "Authorization:<your-authorization-token>" \
'https://<your-iem-url>/portal/api/v1/batches/{your-batch-id}/jobs'
A successful response looks like this:
{
"data": [
{
"installedJobId": "152a2c9a6caa4c6a990e1cf3dd930584",
"objectId": "06cdac6c607e447dad16eef9f767a56e",
"status": "COMPLETED",
"appId": "b98838937bb34487a20c77b8e8b6a9f8",
"appVersion": "",
"operation": "installApplication"
}
]
}