List expertise.

Expertise of a person.

Fields

id (integer)

Primary key.

name (object)

Names of expertise, defined by language.

person (integer)

Foreign key to campusonline/person this expertise applies to.

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:

  • person
GET /v1/research/expertise/?format=api&offset=4680
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 4682,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/expertise/?format=api&limit=20&offset=4660",
    "results": [
        {
            "id": 6120,
            "name": {
                "de": "3R Krebs-Modelle",
                "en": "3R Cancer Models"
            },
            "person": 114534
        },
        {
            "id": 6119,
            "name": {
                "de": "Bioelektronik",
                "en": "Bioelectronics"
            },
            "person": 114534
        }
    ]
}