Gets the latest device health record for a device
GET /v1/devicehealth/getlatest/{deviceID}
Summary
Gets the latest device health record for a device.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| deviceID | path | integer (int64) | Yes | The ID of the device whose latest health record should be returned. | 1 |
Request Body
No request body is documented here.
Responses
200
Success
application/json
key(integer (int64), optional)deviceID(integer (int64), optional)healthDate(string (date-time), optional)healthJSON(string, optional)creationDate(string (date-time), optional)
Example
{
"key": 1,
"deviceID": 201,
"healthDate": "2026-03-30T12:00:00.0000000Z",
"healthJSON": "Example value",
"creationDate": "2026-03-30T12:00:00.0000000Z"
}