/filters/applications/systems - Get available systems

GET /filters/applications/systems

Get list of systems that have at least one application for filtering. Only returns systems with applications - systems without applications are excluded.

Responses

  • 200 application/json

    Systems retrieved successfully

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data array[object]

      Minimal system info for application responses

      Hide data attributes Show data attributes object
      • id string

        System ID

      • name string

        System name

  • 401 application/json

    Unauthorized - invalid or missing token

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
  • 403 application/json

    Forbidden - insufficient permissions

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
GET /filters/applications/systems
curl \
 --request GET 'https://collect.your-domain.com/api/filters/applications/systems' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 200,
  "data": [
    {
      "id": "abc123-system-uuid",
      "name": "Production Server"
    },
    {
      "id": "def456-system-uuid",
      "name": "Development Server"
    }
  ],
  "message": "systems retrieved successfully"
}
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}