Aggregated endpoint that returns all application filter data in a single request. RBAC is resolved once, then types, versions, systems, and organizations are fetched in parallel.
Version Format: Returns versions in prefixed format type:version (e.g., "nethvoice:1.5.3", "mail:1.7.4")
Organizations special value: If there are applications without an assigned organization, the response includes
a special "No organization" entry with id: "no_org" and type: "unassigned".
GET
/filters/applications
curl \
--request GET 'https://api.your-domain.com/api/filters/applications' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"data": {
"types": [
{
"name": "NethVoice",
"count": 15,
"instance_of": "nethvoice"
},
{
"name": "Mail",
"count": 8,
"instance_of": "mail"
}
],
"systems": [
{
"id": "abc123-system-uuid",
"name": "Production Server"
},
{
"id": "def456-system-uuid",
"name": "Development Server"
}
],
"versions": [
{
"name": "Mail",
"versions": [
"mail:1.7.4"
],
"application": "mail"
},
{
"name": "NethVoice",
"versions": [
"nethvoice:1.5.4",
"nethvoice:1.5.3"
],
"application": "nethvoice"
}
],
"organizations": [
{
"id": "no_org",
"name": "No organization",
"type": "unassigned",
"logto_id": "no_org",
"description": ""
},
{
"id": "8b04e253-d408-4218-a30e-b048196847e5",
"name": "Acme Corp",
"type": "customer",
"logto_id": "fso3biosnaqp",
"description": ""
}
]
},
"message": "application filters retrieved successfully"
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}