POST api/itgbestandsmeldungstatus/preparenew
Request Information
URI Parameters
None.
Body Parameters
Collection of KeyValue| Name | Description | Type | Additional 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:
Response Information
Resource Description
ItgBestandsmeldungStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| BestandsmeldungId | integer |
Required |
|
| BstFachverbandId | integer |
Required |
|
| Status | integer |
Required |
|
| Bestaetigt | date |
None. |
|
| Abgelehnt | date |
None. |
|
| Fixiert | date |
None. |
|
| Bemerkung | string |
None. |
|
| Zusatzfeld1 | string |
None. |
|
| Zusatzfeld2 | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "e345d8d5-e198-450a-9747-cba18b78c6e8",
"BestandsmeldungId": 3,
"BstFachverbandId": 4,
"Status": 5,
"Bestaetigt": "2025-11-08T13:34:59.4030227+01:00",
"Abgelehnt": "2025-11-08T13:34:59.4030227+01:00",
"Fixiert": "2025-11-08T13:34:59.4030227+01:00",
"Bemerkung": "sample string 6",
"Zusatzfeld1": "sample string 7",
"Zusatzfeld2": "sample string 8"
}
application/xml, text/xml
Sample:
<ItgBestandsmeldungStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Itg.Models"> <Abgelehnt>2025-11-08T13:34:59.4030227+01:00</Abgelehnt> <Bemerkung>sample string 6</Bemerkung> <Bestaetigt>2025-11-08T13:34:59.4030227+01:00</Bestaetigt> <BestandsmeldungId>3</BestandsmeldungId> <BstFachverbandId>4</BstFachverbandId> <Fixiert>2025-11-08T13:34:59.4030227+01:00</Fixiert> <Id>1</Id> <RowGuid>e345d8d5-e198-450a-9747-cba18b78c6e8</RowGuid> <Status>5</Status> <Zusatzfeld1>sample string 7</Zusatzfeld1> <Zusatzfeld2>sample string 8</Zusatzfeld2> </ItgBestandsmeldungStatus>