/filters/applications/types - Get available application types

GET /filters/applications/types

Get list of available application types for filtering

Responses

  • 200 application/json

    Application types retrieved successfully

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

      Application type metadata (only user-facing types are returned)

      Hide data attributes Show data attributes object
      • instance_of string

        Application type identifier (lowercase, e.g., nethvoice, webtop, mail)

      • count integer

        Number of applications of this type

  • 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/types
curl \
 --request GET 'https://api.your-domain.com/api/filters/applications/types' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "code": 200,
  "message": "application types retrieved successfully",
  "data": [
    {
      "instance_of": "nethvoice",
      "count": 30
    }
  ]
}
Response examples (401)
{
  "code": 401,
  "message": "invalid token",
  "data": {}
}
Response examples (403)
{
  "code": 403,
  "message": "insufficient permissions",
  "data": {}
}