POST api/Clinical/VitalSign/Get
Gets the list of patient vital signs.
Request Information
URI Parameters
None.
Body Parameters
BaseRequestName | Description | Type | Additional information |
---|---|---|---|
PersonUid |
Encryped passcode for the authenticated user. |
string |
Required |
StartDate |
Start date of the request. A time component is not used when passing the start date. |
date |
[Optional] |
EndDate |
End date of the request. A time component is not used when passing the end date. |
date |
[Optional] |
Request Formats
application/json, text/json
Sample:
{ "PersonUid": "sample string 1", "StartDate": "2025-01-15T19:39:22.3193762-05:00", "EndDate": "2025-01-15T19:39:22.3193762-05:00" }
Response Information
Resource Description
VitalSignsResponseName | Description | Type | Additional information |
---|---|---|---|
VitalSigns |
List of vital signs for a patient. |
Collection of VitalSign | |
ErrorMessage |
If the success property is false, the ErrorMessage property will contain error text, otherwise it will be null. |
string | |
ErrorType |
Text of the type of error that has occured (See the Error Handling section for more information). |
string | |
Success |
Represents the success of the call. |
boolean |
Response Formats
application/json, text/json
Sample:
{ "VitalSigns": [ { "Code": "sample string 1", "CodeSystem": "sample string 2", "VitalsName": "sample string 3", "Date": "sample string 4", "Value": "sample string 5", "Units": "sample string 6" }, { "Code": "sample string 1", "CodeSystem": "sample string 2", "VitalsName": "sample string 3", "Date": "sample string 4", "Value": "sample string 5", "Units": "sample string 6" } ], "ErrorMessage": "sample string 1", "ErrorType": "sample string 2", "Success": true }