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&offset=40
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 47,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/typo3/category/?format=api&limit=20&offset=20",
    "results": [
        {
            "id": 304,
            "title": "Innovation",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 305,
            "title": "IT",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 306,
            "title": "Studium",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 307,
            "title": "Mitteilungsblatt",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 308,
            "title": "Nachhaltigkeit",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 309,
            "title": "Presse",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 310,
            "title": "Universität",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        }
    ]
}