Digitalisieren Sie Ihre Schule innerhalb von 15 Minuten!
Richten Sie Homeworker kostenlos und unverbindlich ein.

GET /api/v2/courses/:course_id/lessons

Gibt alle Fächer einer Klasse zurück.

Antwort:

[
  {
    "id": 28981,
    "name": "Biologie",
    "short": "Bio",
    "room": "243",
    "teacher": "Frau Richter",
    "note": "",
    "color": "#333333",
    "is_gradable": true,
    "is_timetable_only": false,
    "rooms": {
      "0-2-2": "",
      "0-4-5": "",
      "0-4-6": ""
    }
  },
  {
    "id": 89,
    "name": "Deutsch",
    "short": "Deu",
    "room": "670",
    "teacher": "Frau Schmitt",
    "note": " ",
    "color": "#333333",
    "is_gradable": true,
    "is_timetable_only": false,
    "rooms": {
      "0-1-7": "478",
      "0-1-8": "478"
    }
  },
  {
    "id": 88,
    "name": "Englisch",
    "short": "Eng",
    "room": "474",
    "teacher": "Herr Eichmann",
    "note": " ",
    "color": "#333333",
    "is_gradable": true,
    "is_timetable_only": false,
    "rooms": {
      "0-1-1": "420",
      "0-1-2": "420",
      "0-5-5": "420",
      "0-5-6": "420"
    }
  }
]

GET /api/v2/courses/:course_id/lessons/:lesson_id

Gibt alle Informationen über ein Fach zurück.

Antwort:

{
  "id": 97,
  "name": "Informatik",
  "short": "Inf",
  "room": "042",
  "teacher": "Herr Hoch",
  "note": "Macht sehr viel Spaß",
  "color": "#333333",
  "is_gradable": true,
  "is_timetable_only": false,
  "rooms": []
}