POST api/verteilnehmer2gebuehr/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

VerTeilnehmer2Gebuehr
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

TeilnehmerId

integer

Required

GebuehrId

integer

Required

Abgerechnet

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "f1fa2694-e47b-44fa-93f8-c4c4687fed0f",
  "TeilnehmerId": 3,
  "GebuehrId": 4,
  "Abgerechnet": "2025-11-08T13:39:03.4293762+01:00"
}

application/xml, text/xml

Sample:
<VerTeilnehmer2Gebuehr xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ver.Models">
  <Abgerechnet>2025-11-08T13:39:03.4293762+01:00</Abgerechnet>
  <GebuehrId>4</GebuehrId>
  <Id>1</Id>
  <RowGuid>f1fa2694-e47b-44fa-93f8-c4c4687fed0f</RowGuid>
  <TeilnehmerId>3</TeilnehmerId>
</VerTeilnehmer2Gebuehr>