GET api/v1/patient/devices?DeviceTypeId={DeviceTypeId}&Id={Id}&Status={Status}
Gets the devices based on the query
Request Information
Headers
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| DeviceTypeId | {Optional} - The type identifier for the device | DeviceType | None. | 
| Id | {Optional} - The identifier for the device | string | None. | 
| Status | {Optional} - The status for the device | DeviceStatus | None. | 
Body Parameters
None.
Response Information
Headers
Resource Description
Collection of Device| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | The identifier for the device. | string | None. | 
| TypeId | The type identifier for the device | DeviceType | Required | 
| EquipmentId | The equipment identifier, Bluetooth/ZigBee address or other identifier. | string | Required | 
| AcquisitionDate | The acquisition date of the device | date | Required | 
| Status | The status of the device, allocated or deallocated. | DeviceStatus | Required | 
| Manufacturer | {Optional} - The manufacturer for the device | string | None. | 
| Model | {Optional} - Model of the device | string | None. | 
| SerialNumber | {Optional} - The serial number for the device | string | None. | 
| PatientId | {Optional} - The patient identifier mapped to the device | string | None. | 
| LatestSync | {Optional} - The latest synchronize of the device to the server. | date | None. | 
Response Formats
application/json
[
  {
    "Id": "sample string 1",
    "TypeId": 528388,
    "EquipmentId": "sample string 3",
    "AcquisitionDate": "2025-10-31T08:24:41.914866+00:00",
    "Status": "Allocated",
    "Manufacturer": "sample string 4",
    "Model": "sample string 5",
    "SerialNumber": "sample string 6",
    "PatientId": "sample string 7",
    "LatestSync": "2025-10-31T08:24:41.914866+00:00"
  },
  {
    "Id": "sample string 1",
    "TypeId": 528388,
    "EquipmentId": "sample string 3",
    "AcquisitionDate": "2025-10-31T08:24:41.914866+00:00",
    "Status": "Allocated",
    "Manufacturer": "sample string 4",
    "Model": "sample string 5",
    "SerialNumber": "sample string 6",
    "PatientId": "sample string 7",
    "LatestSync": "2025-10-31T08:24:41.914866+00:00"
  }
]