Asset History
Retrieve status and activity history for an asset.
GET
/api/v1/assets/{id}/historyDescription
Returns chronological status logs. id is serial number, customer asset ID, or internal asset number.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Asset identifier. |
Response
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/assets/C02XK1ABCDEF/history \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"history": [
{
"id": 12001,
"manage_app_asset_id": 9001,
"status": 5,
"old": 3,
"activity": "Status Changed",
"description": "Status changed to In Use",
"assign_to": 123,
"assign_to_old": 0,
"created_at": "2026-05-15 09:30:00"
},
{
"id": 11980,
"activity": "Asset Created",
"description": "Asset created by ",
"created_at": "2026-05-01 14:00:00"
}
]
}