POST api/sazaltersgruppe/update
Request Information
URI Parameters
None.
Body Parameters
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 |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "3a9f0249-21dc-411f-8c49-28473f7bb4e3",
"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>3a9f0249-21dc-411f-8c49-28473f7bb4e3</RowGuid> </SazAltersgruppe>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
SazAltersgruppeDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| DisplayField | string |
None. |
|
| GeschlechtDisplay | string |
None. |
|
| 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:
{
"DisplayField": "sample string 1",
"GeschlechtDisplay": "sample string 2",
"Id": 3,
"RowGuid": "ac87bb1f-156d-47e8-b126-2c4e1f91b9b7",
"Bezeichnung": "sample string 5",
"AlterVon": 6,
"AlterBis": 7,
"Geschlecht": 8,
"Jugend": true
}
application/xml, text/xml
Sample:
<SazAltersgruppeDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Saz.Models"> <AlterBis>7</AlterBis> <AlterVon>6</AlterVon> <Bezeichnung>sample string 5</Bezeichnung> <Geschlecht>8</Geschlecht> <Id>3</Id> <Jugend>true</Jugend> <RowGuid>ac87bb1f-156d-47e8-b126-2c4e1f91b9b7</RowGuid> <DisplayField>sample string 1</DisplayField> <GeschlechtDisplay>sample string 2</GeschlechtDisplay> </SazAltersgruppeDisplay>