POST api/sazabsolvent/validateandcombineabsolvent

Request Information

URI Parameters

None.

Body Parameters

SazAbsolventCombine
NameDescriptionTypeAdditional information
Id

integer

Required

AbsolventIdDupl

integer

Required

StartVerlErw

integer

Required

StartVerlErwDupl

integer

Required

StartVerlJug

integer

Required

StartVerlJugDupl

integer

Required

Absolvent2Org

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "AbsolventIdDupl": 2,
  "StartVerlErw": 3,
  "StartVerlErwDupl": 4,
  "StartVerlJug": 5,
  "StartVerlJugDupl": 6,
  "Absolvent2Org": 7
}

application/xml, text/xml

Sample:
<SazAbsolventCombine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Saz.Models">
  <Absolvent2Org>7</Absolvent2Org>
  <AbsolventIdDupl>2</AbsolventIdDupl>
  <Id>1</Id>
  <StartVerlErw>3</StartVerlErw>
  <StartVerlErwDupl>4</StartVerlErwDupl>
  <StartVerlJug>5</StartVerlJug>
  <StartVerlJugDupl>6</StartVerlJugDupl>
</SazAbsolventCombine>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ValidationResult
NameDescriptionTypeAdditional 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>