Auflisten von Aufträgen mit Batch-ID - Manual - Industrial Edge - Industrial Edge - Industrial Edge - Documentation of the Industrial Edge Platform - IEM - Hub - Industrial - Device - IED - Edge - IEH

Industrial Edge Platform Operation - APIs & Referenzen

Product
Industrial Edge
Product Version
v25.04
Edition
04/2025
Language
de-DE

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