List Application versions - 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)

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