GET api/stichworte

Gibt die verfügbaren Stichworte zurück

Aufruf

URL Parameter

Keine.

Parameter

Keine.

Antwort

Beschreibung

Auflistung von StichwortDto
NameBeschreibungTypWeitere Informationen
Stichwortnummer

Stichwortnummer

string

Keine.

Name

Name

string

Keine.

Unterrichtseinheit

Unterrichtseinheit

decimal number

Keine.

Standard

Gibt zurück ob es sich um das Standardstichwort innerhalb des übergeordneten Stichworttypes handelt

boolean

Keine.

TypId

Id des Stichworttyps

string

Keine.

Antwortformat

application/json, text/json

Beispiel:
[
  {
    "Stichwortnummer": "sample string 1",
    "Name": "sample string 2",
    "Unterrichtseinheit": 3.0,
    "Standard": true,
    "TypId": "sample string 5"
  },
  {
    "Stichwortnummer": "sample string 1",
    "Name": "sample string 2",
    "Unterrichtseinheit": 3.0,
    "Standard": true,
    "TypId": "sample string 5"
  }
]