GET api/v1/patient/devices?DeviceTypeId={DeviceTypeId}&Id={Id}&Status={Status}

Gets the devices based on the query

Request Information

Headers

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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

Sample:
[
  {
    "Id": "sample string 1",
    "TypeId": 528388,
    "EquipmentId": "sample string 3",
    "AcquisitionDate": "2025-02-03T10:42:59.9151054+00:00",
    "Status": "Allocated",
    "Manufacturer": "sample string 4",
    "Model": "sample string 5",
    "SerialNumber": "sample string 6",
    "PatientId": "sample string 7",
    "LatestSync": "2025-02-03T10:42:59.9151054+00:00"
  },
  {
    "Id": "sample string 1",
    "TypeId": 528388,
    "EquipmentId": "sample string 3",
    "AcquisitionDate": "2025-02-03T10:42:59.9151054+00:00",
    "Status": "Allocated",
    "Manufacturer": "sample string 4",
    "Model": "sample string 5",
    "SerialNumber": "sample string 6",
    "PatientId": "sample string 7",
    "LatestSync": "2025-02-03T10:42:59.9151054+00:00"
  }
]