GET PlanCare2Api/MedicalSnaqRcScore/{id}
Gets MedicalSnaqRcScore by id.
Requires 'Read' permission for function MedicalSnaqRcScore {AB5B3884-A008-4B0F-B4FD-616B5C652405}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the MedicalSnaqRcScore. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MedicalSnaqRcScore.
MedicalSnaqRcScore| Name | Description | Type | Additional information |
|---|---|---|---|
| WeightLossLongTerm |
Indicates long term weight loss. |
boolean |
None |
| WeightLossShortTerm |
Indicates short term weight loss. |
boolean |
None |
| AssistanceWithNutrition |
Indicates assistance with nutrition. |
boolean |
None |
| DecreasedAppetite |
Indicates decreased appetite. |
boolean |
None |
| HeightInCentimeters |
Height in centimeters. |
integer |
None |
| WeightInKilograms |
Weight in kilograms. |
decimal number |
None |
| Bmi |
Body mass index (read-only). |
decimal number |
None |
| TotalScoreDescription |
Description of the total score (read-only). |
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:
{
"WeightLossLongTerm": true,
"WeightLossShortTerm": true,
"AssistanceWithNutrition": true,
"DecreasedAppetite": true,
"HeightInCentimeters": 5,
"WeightInKilograms": 6.0,
"Bmi": 7.0,
"TotalScoreDescription": "sample string 8",
"Id": 9,
"RelationId": 10,
"RegistrationDateTime": "2026-05-26T23:12:57.4794456+02:00",
"Source": "sample string 12"
}
application/xml, text/xml
Sample:
<MedicalSnaqRcScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Medical"> <Id>9</Id> <RegistrationDateTime>2026-05-26T23:12:57.4794456+02:00</RegistrationDateTime> <RelationId>10</RelationId> <Source>sample string 12</Source> <AssistanceWithNutrition>true</AssistanceWithNutrition> <Bmi>7</Bmi> <DecreasedAppetite>true</DecreasedAppetite> <HeightInCentimeters>5</HeightInCentimeters> <TotalScoreDescription>sample string 8</TotalScoreDescription> <WeightInKilograms>6</WeightInKilograms> <WeightLossLongTerm>true</WeightLossLongTerm> <WeightLossShortTerm>true</WeightLossShortTerm> </MedicalSnaqRcScore>