POST api/v1/patient/device/update

Updates the information about the device

Request Information

Headers

URI Parameters

None.

Body Parameters

DevicePatientWithId
NameDescriptionTypeAdditional information
Id

The identifier for the device.

string

None.

TypeId

The type identifier for the device

DeviceType

None.

EquipmentId

The equipment identifier, Bluetooth/ZigBee address or other identifier.

string

None.

Status

The status of the device, allocated or deallocated.

DeviceStatus

None.

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.

LatestSync

The latest synchronize of the device to the server.

date

None.

Request Formats

application/json

Sample:
{
  "Id": "sample string 1",
  "TypeId": 528388,
  "EquipmentId": "sample string 2",
  "Status": "Allocated",
  "Manufacturer": "sample string 3",
  "Model": "sample string 4",
  "SerialNumber": "sample string 5",
  "LatestSync": "2025-02-03T11:03:14.6341097+00:00"
}

Response Information

Headers

Resource Description

Response
NameDescriptionTypeAdditional information
Result

Result of the response

string

None.

Message

Additional information of the response

string

None.

Response Formats

application/json

Sample:
{
  "Result": "sample string 1",
  "Message": "sample string 2"
}