GET PlanCare2Api/MedicalDiabetes/{id}

Gets MedicalDiabetes by id.

Requires 'Read' permission for function MedicalDiabetes {E452C97D-56B1-4FCE-9069-82D56BBFB4A5}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the MedicalDiabetes.

integer

Required

Body Parameters

None.

Response Information

Resource Description

MedicalDiabetes.

MedicalDiabetes
NameDescriptionTypeAdditional information
Value

Value.

decimal number

None

ValueIsHigh

ValueIsHigh.

boolean

None

IsSober

IsSober.

boolean

None

Treatment

Treatment.

string

None

Diet

Diet.

string

None

Id

Id of the registration.

integer

None

RelationId

Id of the relation which the registration belongs to.

integer

Required

RegistrationDateTime

DateTime of measurement.

date

Required

Source

Source of registration (example: name of the questionnaire).

string

None

Response Formats

application/json, text/json

Sample:
{
  "Value": 1.0,
  "ValueIsHigh": true,
  "IsSober": true,
  "Treatment": "sample string 3",
  "Diet": "sample string 4",
  "Id": 5,
  "RelationId": 6,
  "RegistrationDateTime": "2026-05-26T23:12:56.8387977+02:00",
  "Source": "sample string 8"
}

application/xml, text/xml

Sample:
<MedicalDiabetes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Medical">
  <Id>5</Id>
  <RegistrationDateTime>2026-05-26T23:12:56.8387977+02:00</RegistrationDateTime>
  <RelationId>6</RelationId>
  <Source>sample string 8</Source>
  <Diet>sample string 4</Diet>
  <IsSober>true</IsSober>
  <Treatment>sample string 3</Treatment>
  <Value>1</Value>
  <ValueIsHigh>true</ValueIsHigh>
</MedicalDiabetes>