POST api/lizstundennachweis/validate
Request Information
URI Parameters
None.
Body Parameters
LizStundennachweisValidate| Name | Description | Type | Additional information |
|---|---|---|---|
| Reason | integer |
Required |
|
| Rec | LizStundennachweis |
None. |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AntragId | integer |
Required |
|
| LizenzId | integer |
Required |
|
| BstFachverbandId | integer |
None. |
|
| Stunden | integer |
Required |
|
| Abgerechnet | date |
None. |
|
| Abgerechnet2 | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Reason": 1,
"Rec": {
"Id": 1,
"RowGuid": "5f32cf3b-78e9-43f3-9d7f-d9eae876c5ec",
"AntragId": 3,
"LizenzId": 4,
"BstFachverbandId": 1,
"Stunden": 5,
"Abgerechnet": "2025-11-08T13:37:01.2543801+01:00",
"Abgerechnet2": "2025-11-08T13:37:01.2543801+01:00"
},
"Id": 2,
"RowGuid": "4f8fe39f-ec9d-4cb9-8628-9c6f1775c318",
"AntragId": 4,
"LizenzId": 5,
"BstFachverbandId": 1,
"Stunden": 6,
"Abgerechnet": "2025-11-08T13:37:01.2543801+01:00",
"Abgerechnet2": "2025-11-08T13:37:01.2543801+01:00"
}
application/xml, text/xml
Sample:
<LizStundennachweisValidate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Liz.Models">
<Abgerechnet>2025-11-08T13:37:01.2543801+01:00</Abgerechnet>
<Abgerechnet2>2025-11-08T13:37:01.2543801+01:00</Abgerechnet2>
<AntragId>4</AntragId>
<BstFachverbandId>1</BstFachverbandId>
<Id>2</Id>
<LizenzId>5</LizenzId>
<RowGuid>4f8fe39f-ec9d-4cb9-8628-9c6f1775c318</RowGuid>
<Stunden>6</Stunden>
<Reason>1</Reason>
<Rec>
<Abgerechnet>2025-11-08T13:37:01.2543801+01:00</Abgerechnet>
<Abgerechnet2>2025-11-08T13:37:01.2543801+01:00</Abgerechnet2>
<AntragId>3</AntragId>
<BstFachverbandId>1</BstFachverbandId>
<Id>1</Id>
<LizenzId>4</LizenzId>
<RowGuid>5f32cf3b-78e9-43f3-9d7f-d9eae876c5ec</RowGuid>
<Stunden>5</Stunden>
</Rec>
</LizStundennachweisValidate>
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>