List Application versions - Manual - Industrial Edge Platform - Industrial Edge - Industrial Edge - Documentation of the Industrial Edge Platform - IEM - Hub - Industrial - Device - IED - Edge - IEH

Industrial Edge Platform Operation - APIs & References

Portfolio
Industrial Edge
Product
Industrial Edge Platform
Edition
02/2025
Language
en-US (original)

List all versions of a specific application. For this, you require the application ID of the application as unique identifier:

curl -i -X GET \
-H "Authorization:<your-authorization-token>" \
'https://<your-iem-url>/portal/api/v1/developer-applications/<your-app-id>/versions'

A successful response looks like this:

{
    "data": {
        "versions": [
            {
                "id": "3B3877scAqeqHo38XSb11ro4yL5rUxty",
                "number": "0.0.1",
                "status": 5
            }
        ]
    }
}