POST api/krnanrede/insert
Request Information
URI Parameters
None.
Body Parameters
KrnAnrede| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Nummer | integer |
Required |
|
| Geschlecht | integer |
Required |
|
| AnredeText | string |
None. |
|
| RowGuid | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Nummer": 2,
"Geschlecht": 3,
"AnredeText": "sample string 4",
"RowGuid": "0e54788e-4056-4341-97e8-b6d47a24a827"
}
application/xml, text/xml
Sample:
<KrnAnrede xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Krn.Models"> <AnredeText>sample string 4</AnredeText> <Geschlecht>3</Geschlecht> <Id>1</Id> <Nummer>2</Nummer> <RowGuid>0e54788e-4056-4341-97e8-b6d47a24a827</RowGuid> </KrnAnrede>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
KrnAnredeDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| NummerDisplay | string |
None. |
|
| GeschlechtDisplay | string |
None. |
|
| Id | integer |
Required |
|
| Nummer | integer |
Required |
|
| Geschlecht | integer |
Required |
|
| AnredeText | string |
None. |
|
| RowGuid | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"NummerDisplay": "sample string 1",
"GeschlechtDisplay": "sample string 2",
"Id": 3,
"Nummer": 4,
"Geschlecht": 5,
"AnredeText": "sample string 6",
"RowGuid": "1b3c3d86-f044-4400-a8fd-9c9acec2ef79"
}
application/xml, text/xml
Sample:
<KrnAnredeDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Krn.Models"> <AnredeText>sample string 6</AnredeText> <Geschlecht>5</Geschlecht> <Id>3</Id> <Nummer>4</Nummer> <RowGuid>1b3c3d86-f044-4400-a8fd-9c9acec2ef79</RowGuid> <GeschlechtDisplay>sample string 2</GeschlechtDisplay> <NummerDisplay>sample string 1</NummerDisplay> </KrnAnredeDisplay>