Get list of available application types for filtering
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": {}
}