GET PlanCare2Api/MedicalTemperature/{id}
Gets MedicalTemperature by id.
Requires 'Read' permission for function MedicalTemperature {A6B5B8F7-6408-488A-B92F-D3C1272D8C9E}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the MedicalTemperature. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MedicalTemperature.
MedicalTemperature| Name | Description | Type | Additional information |
|---|---|---|---|
| Temperature |
Temperature. |
decimal number |
- |
| MedicalCodeTemperatureTypeId |
Id of MedicalCodeTemperatureType (MedicalCodeListType.TemperatureType). |
globally unique identifier |
Nullable |
| Remarks |
Remarks. |
string |
- |
| Id |
Id of the registration. |
integer |
- |
| 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 |
- |
Response Formats
application/json, text/json
Sample:
{
"Temperature": 1.0,
"MedicalCodeTemperatureTypeId": "344aa72f-6b85-415a-bdef-753b7d9fcd0e",
"Remarks": "sample string 2",
"Id": 3,
"RelationId": 4,
"RegistrationDateTime": "2026-05-26T23:13:13.4625901+02:00",
"Source": "sample string 6"
}
application/xml, text/xml
Sample:
<MedicalTemperature xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Medical"> <Id>3</Id> <RegistrationDateTime>2026-05-26T23:13:13.4625901+02:00</RegistrationDateTime> <RelationId>4</RelationId> <Source>sample string 6</Source> <MedicalCodeTemperatureTypeId>344aa72f-6b85-415a-bdef-753b7d9fcd0e</MedicalCodeTemperatureTypeId> <Remarks>sample string 2</Remarks> <Temperature>1</Temperature> </MedicalTemperature>