GET api/v1/healthprofessional/device/gethistory?PatientId={PatientId}&Action={Action}&EUI64={EUI64}&StartTime={StartTime}&EndTime={EndTime}&Order={Order}
Gets list of the device history filtered by the query.
Request Information
Headers
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientId |
{Optional} - The patient identifier |
string |
None. |
| Action |
{Optional} - The action done on the device |
DeviceAction |
None. |
| EUI64 |
{Optional} - The equipment identifier in EUI 64 format. |
string |
None. |
| StartTime |
{Optional} - The start time |
date |
None. |
| EndTime |
{Optional} - The end time |
date |
None. |
| Order |
{Optional} - Order of the data based on timestamp. Default set to ascending. |
string |
None. |
Body Parameters
None.
Response Information
Headers
Resource Description
Collection of DeviceHistory| Name | Description | Type | Additional information |
|---|---|---|---|
| Timestamp |
The timestamp of when something happened the device |
date |
None. |
| EUI64 |
The equipment identifier in EUI64 format |
string |
None. |
| Action |
The action made to the device |
DeviceAction |
None. |
| ChangedBy |
Who did the change to the device |
string |
None. |
| PatientId |
{Optinal} - The change of the device to whom it affected |
string |
None. |
| Comment |
{Optional} - A comment to the change |
string |
None. |
Response Formats
application/json
[
{
"Timestamp": "2025-10-28T15:51:49.3355276+00:00",
"EUI64": "sample string 2",
"Action": "Allocated",
"ChangedBy": "sample string 3",
"PatientId": "sample string 4",
"Comment": "sample string 5"
},
{
"Timestamp": "2025-10-28T15:51:49.3355276+00:00",
"EUI64": "sample string 2",
"Action": "Allocated",
"ChangedBy": "sample string 3",
"PatientId": "sample string 4",
"Comment": "sample string 5"
}
]