Gets a device health record by ID
GET /v1/devicehealth/{deviceHealthID}
Summary
Gets a device health record by ID.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| deviceHealthID | path | integer (int64) | Yes | The ID of the device health record to retrieve. | 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"
}