POST api/sazabsolvent/getaltersgruppe
Request Information
URI Parameters
None.
Body Parameters
SazAbsolventGetAltersgruppeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Abnahmejahr | integer |
Required |
|
| AbsolventId | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"Abnahmejahr": 1,
"AbsolventId": 2
}
application/xml, text/xml
Sample:
<SazAbsolventGetAltersgruppeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Saz.Models"> <Abnahmejahr>1</Abnahmejahr> <AbsolventId>2</AbsolventId> </SazAbsolventGetAltersgruppeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SazAltersgruppe| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Bezeichnung | string |
None. |
|
| AlterVon | integer |
Required |
|
| AlterBis | integer |
Required |
|
| Geschlecht | integer |
Required |
|
| Jugend | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "05d02753-ce5b-42ae-a1d0-c0b232c74e23",
"Bezeichnung": "sample string 3",
"AlterVon": 4,
"AlterBis": 5,
"Geschlecht": 6,
"Jugend": true
}
application/xml, text/xml
Sample:
<SazAltersgruppe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Saz.Models"> <AlterBis>5</AlterBis> <AlterVon>4</AlterVon> <Bezeichnung>sample string 3</Bezeichnung> <Geschlecht>6</Geschlecht> <Id>1</Id> <Jugend>true</Jugend> <RowGuid>05d02753-ce5b-42ae-a1d0-c0b232c74e23</RowGuid> </SazAltersgruppe>