GET api/kurs/kursstornogebuehren/{kurs_id}

Liste aller Stornogebühren eines Kurses.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
kurs_id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of KursStornogebuehr
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

kurs_id

globally unique identifier

None.

termin_id

globally unique identifier

None.

tage

integer

None.

betrag

decimal number

None.

prozent

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "e273d508-d533-4827-bf76-8de64a741d23",
    "kurs_id": "f66daa46-ad81-430a-b5d3-a59aea57d969",
    "termin_id": "1b5b7f2f-4837-4de9-8897-02b475e2c90d",
    "tage": 3,
    "betrag": 1.1,
    "prozent": 1
  },
  {
    "id": "e273d508-d533-4827-bf76-8de64a741d23",
    "kurs_id": "f66daa46-ad81-430a-b5d3-a59aea57d969",
    "termin_id": "1b5b7f2f-4837-4de9-8897-02b475e2c90d",
    "tage": 3,
    "betrag": 1.1,
    "prozent": 1
  }
]