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

LizStundennachweis
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

AntragId

integer

Required

LizenzId

integer

Required

BstFachverbandId

integer

None.

Stunden

integer

Required

Abgerechnet

date

None.

Abgerechnet2

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "2eb6de31-95d2-4e54-b928-176ed4ae1af4",
  "AntragId": 3,
  "LizenzId": 4,
  "BstFachverbandId": 1,
  "Stunden": 5,
  "Abgerechnet": "2025-10-25T21:04:15.9857433+02:00",
  "Abgerechnet2": "2025-10-25T21:04:15.9857433+02:00"
}

application/xml, text/xml

Sample:
<LizStundennachweis xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Liz.Models">
  <Abgerechnet>2025-10-25T21:04:15.9857433+02:00</Abgerechnet>
  <Abgerechnet2>2025-10-25T21:04:15.9857433+02:00</Abgerechnet2>
  <AntragId>3</AntragId>
  <BstFachverbandId>1</BstFachverbandId>
  <Id>1</Id>
  <LizenzId>4</LizenzId>
  <RowGuid>2eb6de31-95d2-4e54-b928-176ed4ae1af4</RowGuid>
  <Stunden>5</Stunden>
</LizStundennachweis>