POST api/apphistory/keyvalue
Request Information
URI Parameters
None.
Body Parameters
AppHistorySelect| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ElementId | globally unique identifier |
None. |
|
| ElementIds | Collection of globally unique identifier |
None. |
|
| Aenderungstyp | integer |
None. |
|
| ZeitpunktFrom | date |
None. |
|
| ZeitpunktTo | date |
None. |
|
| Benutzer | string |
None. |
|
| Bemerkung | string |
None. |
|
| Tabelle | string |
None. |
|
| AlterWert | string |
None. |
|
| Aenderungsbefehl | string |
None. |
|
| PageSize | integer |
Required |
|
| PageIndex | integer |
Required |
|
| SortField | string |
None. |
|
| SortFieldDefault | string |
None. |
|
| Quicksearch | string |
None. |
|
| filterIsSet | boolean |
None. |
|
| TagIds | Collection of integer |
None. |
|
| TagFullMatch | boolean |
None. |
|
| WithTags | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ElementId": "2897a220-a175-4c65-a20a-eca14dbaea84",
"ElementIds": [
"7da1d14b-e7ab-4830-a6a8-482a93346101",
"090ed8ca-d68f-4f75-8c3e-dd90072a6557"
],
"Aenderungstyp": 1,
"ZeitpunktFrom": "2025-12-06T05:50:19.3580216+01:00",
"ZeitpunktTo": "2025-12-06T05:50:19.3580216+01:00",
"Benutzer": "sample string 1",
"Bemerkung": "sample string 2",
"Tabelle": "sample string 3",
"AlterWert": "sample string 4",
"Aenderungsbefehl": "sample string 5",
"PageSize": 6,
"PageIndex": 7,
"SortField": "sample string 8",
"SortFieldDefault": "sample string 9",
"Quicksearch": "sample string 10",
"filterIsSet": true,
"TagIds": [
1,
2
],
"TagFullMatch": true,
"WithTags": true
}
application/xml, text/xml
Sample:
<AppHistorySelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<PageIndex>7</PageIndex>
<PageSize>6</PageSize>
<Quicksearch>sample string 10</Quicksearch>
<SortField>sample string 8</SortField>
<SortFieldDefault>sample string 9</SortFieldDefault>
<TagFullMatch>true</TagFullMatch>
<TagIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</TagIds>
<WithTags>true</WithTags>
<filterIsSet>true</filterIsSet>
<Aenderungsbefehl>sample string 5</Aenderungsbefehl>
<Aenderungstyp>1</Aenderungstyp>
<AlterWert>sample string 4</AlterWert>
<Bemerkung>sample string 2</Bemerkung>
<Benutzer>sample string 1</Benutzer>
<ElementId>2897a220-a175-4c65-a20a-eca14dbaea84</ElementId>
<ElementIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>7da1d14b-e7ab-4830-a6a8-482a93346101</d2p1:guid>
<d2p1:guid>090ed8ca-d68f-4f75-8c3e-dd90072a6557</d2p1:guid>
</ElementIds>
<Id>1</Id>
<Tabelle>sample string 3</Tabelle>
<ZeitpunktFrom>2025-12-06T05:50:19.3580216+01:00</ZeitpunktFrom>
<ZeitpunktTo>2025-12-06T05:50:19.3580216+01:00</ZeitpunktTo>
</AppHistorySelect>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of KeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Value | string |
None. |
Response 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>