PUT api/kurs/kursanmeldung
Mitglied (mgd_id) wird beim Kurs (kurs_id) angemeldet
Request Information
URI Parameters
None.
Body Parameters
KursAnmeldung| Name | Description | Type | Additional information |
|---|---|---|---|
| kurs_id | globally unique identifier |
None. |
|
| anmeldungvon_benutzer_id | globally unique identifier |
None. |
|
| anmeldungals | KursanmeldungAls |
None. |
|
| teilnehmer | Collection of KursAnmeldungTeilnehmer |
None. |
|
| skipvoraussetzungen | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"kurs_id": "048ab525-22a6-46a8-8ae6-ea4ce3d044bc",
"anmeldungvon_benutzer_id": "c6480cf7-de78-47cf-873a-7cbb01062c88",
"anmeldungals": 2,
"teilnehmer": [
{
"termin_id": "571bfc35-eac0-4ff6-8d75-d4929b7409fe",
"mgd_id": "d2d5cc71-f0c7-4c78-a366-68d720490e6c",
"icename": "sample string 3",
"icetelefonnummer": "sample string 4",
"gebuehren_id": [
"6c8a0b45-7251-4823-80c3-7cd785a75299",
"927e46e2-6738-405f-8570-38f2116e868f"
],
"zahlungsart": 1,
"weiterbildungzahlung": 1,
"betreuungsschiene_id": "aac09576-d800-4ec3-ad97-0192fd6fb1e3",
"vermerkteamleiter": "sample string 5",
"vermerkliste": [
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
},
{
"termin_id": "571bfc35-eac0-4ff6-8d75-d4929b7409fe",
"mgd_id": "d2d5cc71-f0c7-4c78-a366-68d720490e6c",
"icename": "sample string 3",
"icetelefonnummer": "sample string 4",
"gebuehren_id": [
"6c8a0b45-7251-4823-80c3-7cd785a75299",
"927e46e2-6738-405f-8570-38f2116e868f"
],
"zahlungsart": 1,
"weiterbildungzahlung": 1,
"betreuungsschiene_id": "aac09576-d800-4ec3-ad97-0192fd6fb1e3",
"vermerkteamleiter": "sample string 5",
"vermerkliste": [
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
}
],
"skipvoraussetzungen": true
}
Response Information
Resource Description
Collection of KursAnmeldungRet| Name | Description | Type | Additional information |
|---|---|---|---|
| teilnehmer_id | globally unique identifier |
None. |
|
| termin_id | globally unique identifier |
None. |
|
| mgd_id | globally unique identifier |
None. |
|
| typ | enuKursteilnehmertyp |
None. |
|
| sollbetrag | decimal number |
None. |
|
| vorbehalt | boolean |
None. |
|
| vormerkung | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"teilnehmer_id": "9db584f7-002b-42af-aabf-2538d84f100c",
"termin_id": "6cae1420-9f50-40d0-9341-b4f872dae097",
"mgd_id": "9203b5d9-9677-4e6a-b05a-0df68bc85cf4",
"typ": 1,
"sollbetrag": 4.0,
"vorbehalt": true,
"vormerkung": true
},
{
"teilnehmer_id": "9db584f7-002b-42af-aabf-2538d84f100c",
"termin_id": "6cae1420-9f50-40d0-9341-b4f872dae097",
"mgd_id": "9203b5d9-9677-4e6a-b05a-0df68bc85cf4",
"typ": 1,
"sollbetrag": 4.0,
"vorbehalt": true,
"vormerkung": true
}
]