List categories from TYPO3.

Fields

id (integer)

Primary key.

language (integer)

Foreign key to TYPO3 language.

title (string)

Titel of category.

description (string)

Full description of category.

start (datetime)

Start of period of validity.

end (datetime)

End of period of validity.

Expansions

To activate relation expansion add the desired fields as a comma separated list to the expand query parameter like this:

?expand=<field>,<field>,<field>,...

The following relational fields can be expanded:

  • language
GET /v1/typo3/category/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 47,
    "next": "https://api-test.medunigraz.at/v1/typo3/category/?format=api&limit=20&offset=20",
    "previous": null,
    "results": [
        {
            "id": 9,
            "title": "Startseite",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 14,
            "title": "Intranet",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 25,
            "title": "KAGes",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 266,
            "title": "News & Events",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 267,
            "title": "Universität",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 268,
            "title": "Forschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 269,
            "title": "Gesundheit",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 270,
            "title": "Presse",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 271,
            "title": "Forschungsfelder",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 272,
            "title": "Krebsforschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 273,
            "title": "Neurowissenschaften",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 274,
            "title": "Stoffwechsel & Kreislauf",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 275,
            "title": "Gesundheitsforschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 276,
            "title": "Mikrobiom & Infektion",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 277,
            "title": "NEWS-Flash für Bedienstete",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 278,
            "title": "Mitteilungsblatt",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 279,
            "title": "Universität",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 281,
            "title": "Presse",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 282,
            "title": "Forschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 283,
            "title": "Lehre",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        }
    ]
}