POST api/greprotokoll/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
GreProtokoll| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| GremiumId | integer |
Required |
|
| OrganisationId | integer |
None. |
|
| PersonId | integer |
None. |
|
| AdresseId | integer |
Required |
|
| Beginn | date |
Required |
|
| Ende | date |
None. |
|
| PrimaereEmail | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"GremiumId": 2,
"OrganisationId": 1,
"PersonId": 1,
"AdresseId": 3,
"Beginn": "2025-11-08T13:36:46.5595742+01:00",
"Ende": "2025-11-08T13:36:46.5595742+01:00",
"PrimaereEmail": 5,
"RowGuid": "6583d0eb-2414-412f-87b9-c2c1714cd33d"
}
application/xml, text/xml
Sample:
<GreProtokoll xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Gre.Models"> <AdresseId>3</AdresseId> <Beginn>2025-11-08T13:36:46.5595742+01:00</Beginn> <Ende>2025-11-08T13:36:46.5595742+01:00</Ende> <GremiumId>2</GremiumId> <Id>1</Id> <OrganisationId>1</OrganisationId> <PersonId>1</PersonId> <PrimaereEmail>5</PrimaereEmail> <RowGuid>6583d0eb-2414-412f-87b9-c2c1714cd33d</RowGuid> </GreProtokoll>