List Applications - 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)

Use this request to list all the applications owned by a user and applications shared with the user:

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

A successful response looks like this:

{
    "data": {
        "developer-applications": [
            {
                "id": "6f35d459cd4840adaf95b7338c22b77b",
                "userId": "ef0c10d0d76b49fdbb99a5c7780ff5bb",
                "title": "app11",
                "iconUrl": "https://localhost:443/pp/PortalCache/app/6f35d459cd4840adaf95b7338c22b77b/1.png"
            }
        ]
    }
}