POST api/krnkarteninhaber/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
KrnKarteninhaber| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| KartentypId | integer |
Required |
|
| PersonId | integer |
Required |
|
| Nummer | string |
None. |
|
| Beginn | date |
Required |
|
| Ende | date |
None. |
|
| RowGuid | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"KartentypId": 2,
"PersonId": 3,
"Nummer": "sample string 4",
"Beginn": "2025-11-08T13:39:09.7180421+01:00",
"Ende": "2025-11-08T13:39:09.7180421+01:00",
"RowGuid": "405ba335-02b0-4bf5-85f5-d6b813d5e2fc"
}
application/xml, text/xml
Sample:
<KrnKarteninhaber xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Krn.Models"> <Beginn>2025-11-08T13:39:09.7180421+01:00</Beginn> <Ende>2025-11-08T13:39:09.7180421+01:00</Ende> <Id>1</Id> <KartentypId>2</KartentypId> <Nummer>sample string 4</Nummer> <PersonId>3</PersonId> <RowGuid>405ba335-02b0-4bf5-85f5-d6b813d5e2fc</RowGuid> </KrnKarteninhaber>