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": 64,
    "next": "https://api-test.medunigraz.at/v1/typo3/category/?format=api&limit=20&offset=60",
    "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
        },
        {
            "id": 311,
            "title": "Innovation",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 312,
            "title": "Nachhaltigkeit",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 313,
            "title": "Weiterbildung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 314,
            "title": "Campusleben",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 315,
            "title": "Campus",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 316,
            "title": "Studium",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 317,
            "title": "Awards",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 318,
            "title": "Research",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 319,
            "title": "Health",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 320,
            "title": "University",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 321,
            "title": "Studying",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 322,
            "title": "Campus",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        },
        {
            "id": 323,
            "title": "Cancer research",
            "description": "",
            "start": null,
            "end": null,
            "language": 1
        }
    ]
}