GET api/kurs/kursstornogebuehren/{kurs_id}
Liste aller Stornogebühren eines Kurses.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| kurs_id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of KursStornogebuehr| Name | Description | Type | Additional 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": "ccce8256-8d4d-4c1b-abf1-ba2edfcad1cc",
"kurs_id": "51489e8b-b704-4c50-9177-698e1cb204d2",
"termin_id": "f79d651a-cf40-4409-a6e2-c2de70a2e002",
"tage": 3,
"betrag": 1.1,
"prozent": 1
},
{
"id": "ccce8256-8d4d-4c1b-abf1-ba2edfcad1cc",
"kurs_id": "51489e8b-b704-4c50-9177-698e1cb204d2",
"termin_id": "f79d651a-cf40-4409-a6e2-c2de70a2e002",
"tage": 3,
"betrag": 1.1,
"prozent": 1
}
]