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": "f6cad255-80bd-401a-91ec-6b9f3924d9bc"
}
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>f6cad255-80bd-401a-91ec-6b9f3924d9bc</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": "c51a1bd7-252f-44de-8330-b56c72bc68f8"
}
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>c51a1bd7-252f-44de-8330-b56c72bc68f8</RowGuid> <GeschlechtDisplay>sample string 2</GeschlechtDisplay> <NummerDisplay>sample string 1</NummerDisplay> </KrnAnredeDisplay>