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:

Sample not available.

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": "6f6a52fa-86d7-47ec-adcd-6712fdb5d999",
  "TeilnehmerId": 3,
  "GebuehrId": 4,
  "Abgerechnet": "2025-12-06T05:54:31.235187+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-12-06T05:54:31.235187+01:00</Abgerechnet>
  <GebuehrId>4</GebuehrId>
  <Id>1</Id>
  <RowGuid>6f6a52fa-86d7-47ec-adcd-6712fdb5d999</RowGuid>
  <TeilnehmerId>3</TeilnehmerId>
</VerTeilnehmer2Gebuehr>