POST api/greteilnahme/preparenew

Request Information

URI Parameters

None.

Body Parameters

Collection of KeyValue
NameDescriptionTypeAdditional information
Id

integer

Required

Value

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Value": "sample string 2"
  },
  {
    "Id": 1,
    "Value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
</ArrayOfKeyValue>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

GreTeilnahme
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

SitzungId

integer

Required

OrganisationId

integer

None.

PersonId

integer

None.

AdresseId

integer

Required

TeilnahmeStatusId

integer

Required

Mitglied

boolean

Required

Kosten

decimal number

Required

Abgerechnet

date

None.

Beginn

date

None.

Ende

date

None.

Memo

string

None.

PrimaereEmail

integer

Required

BeginnUhrzeit

string

None.

EndeUhrzeit

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "5841c98c-3ab3-4ead-9e64-6e61e9bc6590",
  "SitzungId": 3,
  "OrganisationId": 1,
  "PersonId": 1,
  "AdresseId": 4,
  "TeilnahmeStatusId": 5,
  "Mitglied": true,
  "Kosten": 7.0,
  "Abgerechnet": "2025-10-25T20:58:35.0529339+02:00",
  "Beginn": "2025-10-25T20:58:35.0529339+02:00",
  "Ende": "2025-10-25T20:58:35.0529339+02:00",
  "Memo": "sample string 8",
  "PrimaereEmail": 9,
  "BeginnUhrzeit": "sample string 10",
  "EndeUhrzeit": "sample string 11"
}

application/xml, text/xml

Sample:
<GreTeilnahme xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Gre.Models">
  <Abgerechnet>2025-10-25T20:58:35.0529339+02:00</Abgerechnet>
  <AdresseId>4</AdresseId>
  <Beginn>2025-10-25T20:58:35.0529339+02:00</Beginn>
  <BeginnUhrzeit>sample string 10</BeginnUhrzeit>
  <Ende>2025-10-25T20:58:35.0529339+02:00</Ende>
  <EndeUhrzeit>sample string 11</EndeUhrzeit>
  <Id>1</Id>
  <Kosten>7</Kosten>
  <Memo>sample string 8</Memo>
  <Mitglied>true</Mitglied>
  <OrganisationId>1</OrganisationId>
  <PersonId>1</PersonId>
  <PrimaereEmail>9</PrimaereEmail>
  <RowGuid>5841c98c-3ab3-4ead-9e64-6e61e9bc6590</RowGuid>
  <SitzungId>3</SitzungId>
  <TeilnahmeStatusId>5</TeilnahmeStatusId>
</GreTeilnahme>