Nach dem Übermitteln eines Batchauftrags kann er mehrere Aufträge enthalten. Verwenden Sie diese Anforderung, um eine Liste der Aufträge mit der spezifischen Batch-ID abzurufen:
curl -i -X GET \
-H "Authorization:<your-authorization-token>" \
'https://<your-iem-url>/portal/api/v1/batches/{your-batch-id}/jobs'
Eine erfolgreiche Antwort sieht wie folgt aus:
{
"data": [
{
"installedJobId": "152a2c9a6caa4c6a990e1cf3dd930584",
"objectId": "06cdac6c607e447dad16eef9f767a56e",
"status": "COMPLETED",
"appId": "b98838937bb34487a20c77b8e8b6a9f8",
"appVersion": "",
"operation": "installApplication"
}
]
}