Aggregated endpoint that returns products, creators and versions for the systems views. Auth is checked once, then the three datasets are fetched in parallel. Respects RBAC hierarchy - users only see data from systems they can access.
Version Format: Returns versions in prefixed format product:version
(e.g., "nsec:1.2.3", "ns8:1.2.3") to avoid ambiguity when the same
version number exists for multiple products.
Organizations dropdown is populated by the dedicated /api/organizations
endpoint, which supports search and pagination.
GET
/filters/systems
curl \
--request GET 'https://api.your-domain.com/api/filters/systems' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "system filters retrieved successfully",
"data": {
"products": [
"NethSecurity",
"NethServer"
],
"created_by": [
{
"user_id": "pnqjmgmk937x",
"name": "Company Owner",
"email": "owner@example.com",
"organization_id": "2wl3iixbc8ua",
"organization_name": "Nethesis Italia"
}
],
"versions": [
{
"product": "nsec",
"versions": [
"nsec:8.6.0",
"nsec:8.5.2"
]
},
{
"product": "ns8",
"versions": [
"ns8:1.2.3",
"ns8:1.1.0"
]
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}