POST api/itgteilnehmerteil/validate
Request Information
URI Parameters
None.
Body Parameters
ItgTeilnehmerTeilValidate| Name | Description | Type | Additional information |
|---|---|---|---|
| Reason | integer |
Required |
|
| Rec | ItgTeilnehmerTeil |
None. |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AnfrageId | integer |
Required |
|
| TeilnehmerId | integer |
Required |
|
| TeilId | integer |
Required |
|
| Anzahl | integer |
Required |
|
| Anmeldung | date |
Required |
|
| Gebucht | date |
None. |
|
| Bestaetigt | date |
None. |
|
| Storno | date |
None. |
|
| Teilnahme | boolean |
Required |
|
| Alternative | boolean |
Required |
|
| Duplikat | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"Reason": 1,
"Rec": {
"Id": 1,
"RowGuid": "b2f7544f-7fe9-4304-9b1d-ff388bfc6964",
"AnfrageId": 3,
"TeilnehmerId": 4,
"TeilId": 5,
"Anzahl": 6,
"Anmeldung": "2025-11-08T13:36:58.9789013+01:00",
"Gebucht": "2025-11-08T13:36:58.9789013+01:00",
"Bestaetigt": "2025-11-08T13:36:58.9789013+01:00",
"Storno": "2025-11-08T13:36:58.9789013+01:00",
"Teilnahme": true,
"Alternative": true,
"Duplikat": 10
},
"Id": 2,
"RowGuid": "72bfbc24-e636-4651-8bbd-1fd570b9818d",
"AnfrageId": 4,
"TeilnehmerId": 5,
"TeilId": 6,
"Anzahl": 7,
"Anmeldung": "2025-11-08T13:36:58.9789013+01:00",
"Gebucht": "2025-11-08T13:36:58.9789013+01:00",
"Bestaetigt": "2025-11-08T13:36:58.9789013+01:00",
"Storno": "2025-11-08T13:36:58.9789013+01:00",
"Teilnahme": true,
"Alternative": true,
"Duplikat": 11
}
application/xml, text/xml
Sample:
<ItgTeilnehmerTeilValidate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Itg.Models">
<Alternative>true</Alternative>
<AnfrageId>4</AnfrageId>
<Anmeldung>2025-11-08T13:36:58.9789013+01:00</Anmeldung>
<Anzahl>7</Anzahl>
<Bestaetigt>2025-11-08T13:36:58.9789013+01:00</Bestaetigt>
<Duplikat>11</Duplikat>
<Gebucht>2025-11-08T13:36:58.9789013+01:00</Gebucht>
<Id>2</Id>
<RowGuid>72bfbc24-e636-4651-8bbd-1fd570b9818d</RowGuid>
<Storno>2025-11-08T13:36:58.9789013+01:00</Storno>
<TeilId>6</TeilId>
<Teilnahme>true</Teilnahme>
<TeilnehmerId>5</TeilnehmerId>
<Reason>1</Reason>
<Rec>
<Alternative>true</Alternative>
<AnfrageId>3</AnfrageId>
<Anmeldung>2025-11-08T13:36:58.9789013+01:00</Anmeldung>
<Anzahl>6</Anzahl>
<Bestaetigt>2025-11-08T13:36:58.9789013+01:00</Bestaetigt>
<Duplikat>10</Duplikat>
<Gebucht>2025-11-08T13:36:58.9789013+01:00</Gebucht>
<Id>1</Id>
<RowGuid>b2f7544f-7fe9-4304-9b1d-ff388bfc6964</RowGuid>
<Storno>2025-11-08T13:36:58.9789013+01:00</Storno>
<TeilId>5</TeilId>
<Teilnahme>true</Teilnahme>
<TeilnehmerId>4</TeilnehmerId>
</Rec>
</ItgTeilnehmerTeilValidate>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ValidationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorMsg | string |
None. |
|
| HintMsg | string |
None. |
|
| ErrorFieldNames | Collection of string |
None. |
|
| FieldName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorMsg": "sample string 1",
"HintMsg": "sample string 2",
"ErrorFieldNames": [
"sample string 1",
"sample string 2"
],
"FieldName": "sample string 3"
}
application/xml, text/xml
Sample:
<ValidationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<ErrorFieldNames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ErrorFieldNames>
<ErrorMsg>sample string 1</ErrorMsg>
<FieldName>sample string 3</FieldName>
<HintMsg>sample string 2</HintMsg>
</ValidationResult>