Skip to content

List Institution Filters

Endpoint used to retrieve filters (groups, subgroups, and specialties) from an institution or school in Toolzz LMS.

Terminal window
curl --request GET \
--url 'https://kong.api.toolzz.com.br/api/catalog/list-filters?category=group' \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"name": "<string>",
"category": "group"
}
]
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
categorystringLimits the result to selected categories. Accepts: group, subgroup, or specialty.Yes
school_idintSchool identifier to get filters for.No

KeyTypeDescription
dataarrayList of filters.
data.idnumberUnique identifier of the filter.
data.namestringName of the filter.
data.categorystringCategory of the filter (group, subgroup, or specialty).

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request. Additionally, the API is protected by other security measures to safeguard user data.