POST api/ksvschulart/insert
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": "f7c85dd0-6684-46f7-bf77-d89cf1ad45e4"
}
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>f7c85dd0-6684-46f7-bf77-d89cf1ad45e4</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": "0a9d1d5b-67e5-4f8f-8881-d00d6ce6b49d"
}
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>0a9d1d5b-67e5-4f8f-8881-d00d6ce6b49d</RowGuid> <Sichtbar>true</Sichtbar> <Sonderschule>6</Sonderschule> <SonderschuleDisplay>sample string 1</SonderschuleDisplay> </KsvSchulartDisplay>