Returns the catalog of application types and versions available in the caller's scope. RBAC is resolved once, then types and versions are fetched in parallel.
Version Format: Returns versions in prefixed format type:version
(e.g., "nethvoice:1.5.3", "mail:1.7.4").
Systems and organizations dropdowns are populated by the dedicated
/api/systems and /api/organizations endpoints, which support search
and pagination.
GET
/filters/applications
curl \
--request GET 'https://api.your-domain.com/api/filters/applications' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "application filters retrieved successfully",
"data": {
"types": [
{
"instance_of": "nethvoice",
"name": "NethVoice",
"count": 15
},
{
"instance_of": "mail",
"name": "Mail",
"count": 8
}
],
"versions": [
{
"application": "mail",
"name": "Mail",
"versions": [
"mail:1.7.4"
]
},
{
"application": "nethvoice",
"name": "NethVoice",
"versions": [
"nethvoice:1.5.4",
"nethvoice:1.5.3"
]
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}