/filters/applications/versions - Get version filters grouped by application type

GET /filters/applications/versions

Get application versions grouped by application type (instance_of) for filtering (requires read:applications permission). Returns versions organized by application type, suitable for hierarchical UI display.

Version Format: Returns versions in prefixed format type:version (e.g., "nethvoice:1.5.3", "mail:1.7.4")

Responses

  • 200 application/json

    Application versions retrieved successfully

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

          Application type (instance_of)

        • name string

          Human-readable application name

        • versions array[string]

          Prefixed versions (type:version)

  • 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/versions
curl \
 --request GET 'https://collect.your-domain.com/api/filters/applications/versions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 200,
  "message": "application versions retrieved successfully",
  "data": {
    "versions": [
      {
        "name": "Mail",
        "versions": [
          "mail:1.7.4"
        ],
        "application": "mail"
      },
      {
        "name": "NethVoice",
        "versions": [
          "nethvoice:1.5.4",
          "nethvoice:1.5.3"
        ],
        "application": "nethvoice"
      },
      {
        "name": "WebTop",
        "versions": [
          "webtop:1.5.4"
        ],
        "application": "webtop"
      }
    ]
  }
}
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}