List Jobs With Batch ID - Manual - Industrial Edge - Industrial Edge - Industrial Edge - Documentation of Industrial Edge APIs - CLI tools - Industrial Edge - References - APIs

Industrial Edge Platform Operation - APIs & References

Product
Industrial Edge
Edition
12/2024
Language
en-US (original)

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"
    }
  ]
}