POST api/v1/patient/device/update
Updates the information about the device
Request Information
Headers
URI Parameters
None.
Body Parameters
DevicePatientWithId| Name | Description | Type | Additional 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
{
"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-11-03T16:20:32.9976787+00:00"
}
Response Information
Headers
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Result of the response |
string |
None. |
| Message |
Additional information of the response |
string |
None. |
Response Formats
application/json
{
"Result": "sample string 1",
"Message": "sample string 2"
}