POST api/ehrgrund/insert
Request Information
URI Parameters
None.
Body Parameters
EhrGrund| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Bezeichnung | string |
None. |
|
| Personenbezogen | boolean |
Required |
|
| Aktiv | boolean |
Required |
|
| RowGuid | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Bezeichnung": "sample string 2",
"Personenbezogen": true,
"Aktiv": true,
"RowGuid": "d34e772a-e9fe-46bf-82ae-7ad8bd0ef9f2"
}
application/xml, text/xml
Sample:
<EhrGrund xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ehr.Models"> <Aktiv>true</Aktiv> <Bezeichnung>sample string 2</Bezeichnung> <Id>1</Id> <Personenbezogen>true</Personenbezogen> <RowGuid>d34e772a-e9fe-46bf-82ae-7ad8bd0ef9f2</RowGuid> </EhrGrund>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
EhrGrundDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Bezeichnung | string |
None. |
|
| Personenbezogen | boolean |
Required |
|
| Aktiv | boolean |
Required |
|
| RowGuid | globally unique identifier |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Bezeichnung": "sample string 2",
"Personenbezogen": true,
"Aktiv": true,
"RowGuid": "edbfeac1-a038-42b7-bed0-5f92ae069299"
}
application/xml, text/xml
Sample:
<EhrGrundDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ehr.Models"> <Aktiv>true</Aktiv> <Bezeichnung>sample string 2</Bezeichnung> <Id>1</Id> <Personenbezogen>true</Personenbezogen> <RowGuid>edbfeac1-a038-42b7-bed0-5f92ae069299</RowGuid> </EhrGrundDisplay>