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