POST api/verteilnehmer2gebuehr/validate

Request Information

URI Parameters

None.

Body Parameters

VerTeilnehmer2GebuehrValidate
NameDescriptionTypeAdditional information
Reason

integer

Required

Rec

VerTeilnehmer2Gebuehr

None.

Id

integer

Required

RowGuid

globally unique identifier

Required

TeilnehmerId

integer

Required

GebuehrId

integer

Required

Abgerechnet

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Reason": 1,
  "Rec": {
    "Id": 1,
    "RowGuid": "23eda400-84c7-453a-ba1a-dc1e55400ec6",
    "TeilnehmerId": 3,
    "GebuehrId": 4,
    "Abgerechnet": "2025-10-25T21:04:26.0084375+02:00"
  },
  "Id": 2,
  "RowGuid": "432eff99-a1ac-4bdf-b81e-eeed0975a30c",
  "TeilnehmerId": 4,
  "GebuehrId": 5,
  "Abgerechnet": "2025-10-25T21:04:26.0084375+02:00"
}

application/xml, text/xml

Sample:
<VerTeilnehmer2GebuehrValidate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ver.Models">
  <Abgerechnet>2025-10-25T21:04:26.0084375+02:00</Abgerechnet>
  <GebuehrId>5</GebuehrId>
  <Id>2</Id>
  <RowGuid>432eff99-a1ac-4bdf-b81e-eeed0975a30c</RowGuid>
  <TeilnehmerId>4</TeilnehmerId>
  <Reason>1</Reason>
  <Rec>
    <Abgerechnet>2025-10-25T21:04:26.0084375+02:00</Abgerechnet>
    <GebuehrId>4</GebuehrId>
    <Id>1</Id>
    <RowGuid>23eda400-84c7-453a-ba1a-dc1e55400ec6</RowGuid>
    <TeilnehmerId>3</TeilnehmerId>
  </Rec>
</VerTeilnehmer2GebuehrValidate>

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 'VerTeilnehmer2GebuehrValidate'.

Response Information

Resource Description

ValidationResult
NameDescriptionTypeAdditional information
ErrorMsg

string

None.

HintMsg

string

None.

ErrorFieldNames

Collection of string

None.

FieldName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorMsg": "sample string 1",
  "HintMsg": "sample string 2",
  "ErrorFieldNames": [
    "sample string 1",
    "sample string 2"
  ],
  "FieldName": "sample string 3"
}

application/xml, text/xml

Sample:
<ValidationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <ErrorFieldNames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ErrorFieldNames>
  <ErrorMsg>sample string 1</ErrorMsg>
  <FieldName>sample string 3</FieldName>
  <HintMsg>sample string 2</HintMsg>
</ValidationResult>