POST api/ksvschulart/update
Request Information
URI Parameters
None.
Body Parameters
KsvSchulart| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Nummer | integer |
Required |
|
| Bezeichnung | string |
None. |
|
| Kuerzel | string |
None. |
|
| Sonderschule | integer |
Required |
|
| Sichtbar | boolean |
Required |
|
| RowGuid | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Nummer": 2,
"Bezeichnung": "sample string 3",
"Kuerzel": "sample string 4",
"Sonderschule": 5,
"Sichtbar": true,
"RowGuid": "7e8baf9d-6a88-426e-ba12-8bb409150e60"
}
application/xml, text/xml
Sample:
<KsvSchulart xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ksv.Models"> <Bezeichnung>sample string 3</Bezeichnung> <Id>1</Id> <Kuerzel>sample string 4</Kuerzel> <Nummer>2</Nummer> <RowGuid>7e8baf9d-6a88-426e-ba12-8bb409150e60</RowGuid> <Sichtbar>true</Sichtbar> <Sonderschule>5</Sonderschule> </KsvSchulart>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
KsvSchulartDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| SonderschuleDisplay | string |
None. |
|
| Id | integer |
Required |
|
| Nummer | integer |
Required |
|
| Bezeichnung | string |
None. |
|
| Kuerzel | string |
None. |
|
| Sonderschule | integer |
Required |
|
| Sichtbar | boolean |
Required |
|
| RowGuid | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"SonderschuleDisplay": "sample string 1",
"Id": 2,
"Nummer": 3,
"Bezeichnung": "sample string 4",
"Kuerzel": "sample string 5",
"Sonderschule": 6,
"Sichtbar": true,
"RowGuid": "1b9475bf-0d5a-4b79-b2c2-93294fd8cd2d"
}
application/xml, text/xml
Sample:
<KsvSchulartDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ksv.Models"> <Bezeichnung>sample string 4</Bezeichnung> <Id>2</Id> <Kuerzel>sample string 5</Kuerzel> <Nummer>3</Nummer> <RowGuid>1b9475bf-0d5a-4b79-b2c2-93294fd8cd2d</RowGuid> <Sichtbar>true</Sichtbar> <Sonderschule>6</Sonderschule> <SonderschuleDisplay>sample string 1</SonderschuleDisplay> </KsvSchulartDisplay>