Kategorie testów¶
Pobieranie informacji o kategoriach i subkategoriach testów¶
Aby otrzymać listę kategorii testów należy wysłać wiadomość GET na adres /api/categories/.
W odpowiedzi powinniśmy otrzymać wiadomość o treści z taką strukturą danych:
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 2,
"name": "Node",
"description": "test",
"sort_priority": 10,
"testsubcategory_set": [
{
"id": 8,
"name": "OS Info",
"description": "Info tests desc.",
"sort_priority": 10,
"visible": true,
"category": 2,
"task_types": [
14,
15,
16,
17,
18,
19
]
},
{
"id": 10,
"name": "CPU Performance",
"description": "CPU tests desc.",
"sort_priority": 5,
"visible": true,
"category": 2,
"task_types": [
2,
3,
4,
5,
6
]
}
]
}
]
}