retrieve:
Return the details about the given Category id.

list:
List all Category objects.

GET /api/v1/categories/?format=api&ordering=-fr_label
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 17,
    "next": "https://memento.epfl.ch/api/v1/categories/?format=api&limit=10&offset=10&ordering=-fr_label",
    "previous": null,
    "results": [
        {
            "id": 12,
            "code": "SOUTE",
            "fr_label": "Soutenances de thèses",
            "en_label": "Thesis defenses",
            "activated": true
        },
        {
            "id": 10,
            "code": "SPORT",
            "fr_label": "Manifestations sportives",
            "en_label": "Sporting events",
            "activated": false
        },
        {
            "id": 8,
            "code": "LI",
            "fr_label": "Leçons inaugurales - Leçons d'honneur",
            "en_label": "Inaugural lectures - Honorary Lecture",
            "activated": true
        },
        {
            "id": 15,
            "code": "FORM",
            "fr_label": "Formations internes",
            "en_label": "Internal trainings",
            "activated": true
        },
        {
            "id": 6,
            "code": "FILMS",
            "fr_label": "Films",
            "en_label": "Movies",
            "activated": false
        },
        {
            "id": 7,
            "code": "FETES",
            "fr_label": "Fêtes",
            "en_label": "Celebrations",
            "activated": false
        },
        {
            "id": 5,
            "code": "EXPO",
            "fr_label": "Expositions",
            "en_label": "Exhibitions",
            "activated": true
        },
        {
            "id": 19,
            "code": "PUBLICSCIENCE",
            "fr_label": "Evènements scientifiques grand public",
            "en_label": "Public Science Events",
            "activated": true
        },
        {
            "id": 9,
            "code": "MANIF",
            "fr_label": "Événements festifs et culturels",
            "en_label": "Cultural events",
            "activated": true
        },
        {
            "id": 17,
            "code": "DEADLINE",
            "fr_label": "Echéance",
            "en_label": "Deadline",
            "activated": true
        }
    ]
}