GET /v3/assethistory/thinclients/{unitId}
Summary
Gets the asset history for a specific thin client.
Resource URL
/v3/assethistory/thinclients/{unitId}
Example Request
curl \
--request GET \
https://[server]:8443/umsapi/v3/assethistory/thinclients/000BCA050027
Request Path Variables
Name | Type | Mandatory | Description |
| String | yes | unit ID of the endpoint device |
Response Type
Returns an array of AssetHistoryResource.
Example Response
{
"assethistories": [
{
"historyId": 2,
"unitId": "000BCA050027",
"assetId": 49067,
"eventTimeStamp": 1500012051000,
"event": {
"identifier": "add_on_boot"
}
},
{
"historyId": 3,
"unitId": "000BCA050027",
"assetId": 49070,
"eventTimeStamp": 1500012051000,
"event": {
"identifier": "add_on_boot"
}
},
{
"historyId": 4,
"unitId": "000BCA050027",
"assetId": 49072,
"eventTimeStamp": 1500012123000,
"event": {
"identifier": "add"
}
},
{
"historyId": 5,
"unitId": "000BCA050027",
"assetId": 49072,
"eventTimeStamp": 1500012735000,
"event": {
"identifier": "remove"
}
}
],
"links": []
}