PUT api/kurs/kursanmeldung

Mitglied (mgd_id) wird beim Kurs (kurs_id) angemeldet

Request Information

URI Parameters

None.

Body Parameters

KursAnmeldung
NameDescriptionTypeAdditional 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": "a31415c1-909e-49b2-b800-40dc700dc96a",
  "anmeldungvon_benutzer_id": "0f551ae6-033f-464f-b1c5-225cafe34ad7",
  "anmeldungals": 2,
  "teilnehmer": [
    {
      "termin_id": "9b81fba3-2ff6-4538-9b75-1227b5c2b50a",
      "mgd_id": "a0c16621-7dc4-4388-9e63-501e3b65f988",
      "icename": "sample string 3",
      "icetelefonnummer": "sample string 4",
      "gebuehren_id": [
        "1bd3585a-ae6e-453f-bdfd-f74fe1cd0e21",
        "6d5fd458-f746-40f2-b774-4c2da862b610"
      ],
      "zahlungsart": 1,
      "weiterbildungzahlung": 1,
      "betreuungsschiene_id": "79ade510-3520-4086-936f-9edf0b2790b0",
      "vermerkteamleiter": "sample string 5",
      "vermerkliste": [
        {
          "key": "sample string 1",
          "value": "sample string 2"
        },
        {
          "key": "sample string 1",
          "value": "sample string 2"
        }
      ]
    },
    {
      "termin_id": "9b81fba3-2ff6-4538-9b75-1227b5c2b50a",
      "mgd_id": "a0c16621-7dc4-4388-9e63-501e3b65f988",
      "icename": "sample string 3",
      "icetelefonnummer": "sample string 4",
      "gebuehren_id": [
        "1bd3585a-ae6e-453f-bdfd-f74fe1cd0e21",
        "6d5fd458-f746-40f2-b774-4c2da862b610"
      ],
      "zahlungsart": 1,
      "weiterbildungzahlung": 1,
      "betreuungsschiene_id": "79ade510-3520-4086-936f-9edf0b2790b0",
      "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
NameDescriptionTypeAdditional 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": "ede873db-da1d-4e31-8cf2-eb00c707920f",
    "termin_id": "7407bff8-e089-4654-b253-3d2e3ec029c4",
    "mgd_id": "8ee13483-23d1-47b1-a8d7-c15a6dd6c46e",
    "typ": 1,
    "sollbetrag": 4.0,
    "vorbehalt": true,
    "vormerkung": true
  },
  {
    "teilnehmer_id": "ede873db-da1d-4e31-8cf2-eb00c707920f",
    "termin_id": "7407bff8-e089-4654-b253-3d2e3ec029c4",
    "mgd_id": "8ee13483-23d1-47b1-a8d7-c15a6dd6c46e",
    "typ": 1,
    "sollbetrag": 4.0,
    "vorbehalt": true,
    "vormerkung": true
  }
]