POST api/ehrgrund/insert

Request Information

URI Parameters

None.

Body Parameters

EhrGrund
NameDescriptionTypeAdditional 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": "551fff5a-bda1-44df-a2eb-ffe0df25c876"
}

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>551fff5a-bda1-44df-a2eb-ffe0df25c876</RowGuid>
</EhrGrund>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EhrGrundDisplay
NameDescriptionTypeAdditional 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": "b05e813f-0bd0-4e6d-a28b-5e1cd46daf4d"
}

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>b05e813f-0bd0-4e6d-a28b-5e1cd46daf4d</RowGuid>
</EhrGrundDisplay>