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=20
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=40",
    "previous": "https://api-test.medunigraz.at/v1/typo3/category/?format=api&limit=20",
    "results": [
        {
            "id": 284,
            "title": "Studium",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 285,
            "title": "Lehre",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 286,
            "title": "Studo",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 287,
            "title": "Forschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 288,
            "title": "Forschungsförderung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 289,
            "title": "IT",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 290,
            "title": "Human Resources",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 291,
            "title": "Universität",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 292,
            "title": "Interessensvertretung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 293,
            "title": "Forschungsförderung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 294,
            "title": "Human Resources",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 295,
            "title": "Campusleben",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 296,
            "title": "IT",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 297,
            "title": "Innovation",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 298,
            "title": "Nachhaltigkeit",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 299,
            "title": "Auszeichnungen",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 300,
            "title": "NEWS-Flash für Studierende",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 301,
            "title": "Campusleben",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 302,
            "title": "Forschung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        },
        {
            "id": 303,
            "title": "Forschungsförderung",
            "description": "",
            "start": null,
            "end": null,
            "language": null
        }
    ]
}