You can get all the applications installed on a specific IED or all IEDS. If you don't add the specific device id as the query field, then you will get all applicaitons installed on all IEDS of the IEM, if you assigned the specific device id, then you will get the applications installed on this IED. use the request:
curl -i -X GET \
-H "Authorization:<your-authorization-token>" \
'https://<your-iem-url>/portal/api/v1/devices/installed-apps?deviceId=<your-device-id>'
A successful response looks like this:
{
"data": [
{
"applicationId": "093751e589e040aca13f4aaefd2f62a9",
"icon": "",
"title": "test",
"deviceId": "093751e589e040aca13f4aaefd2f62a9",
"deviceName": "testDevice",
"versionId": "PKF5CMDhyFUndKy0TciuWPKpR9ITlkSp",
"versionNumber": "0.0.1",
"status": "REVIEWED"
}
]
}