GET v1/Tcus/{id}/NoAssetReports
Get the current no-asset report record for a TCU. A no-asset report is a report received from the TCU at a time when no asset is associated with it.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID of the TCU to get the no-asset report for. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Lhp.EquipmentIntelligence.WebApi.Models.V1.NoAssetReportModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NoAssetReportId |
Unique ID of the no asset report. |
integer |
None. |
| TcuName |
Name of the TCU that sent the report. |
string |
None. |
| LastReportTimeStamp |
Timestamp of the last report received from this TCU. |
date |
None. |
| TcuType |
The Type of the TCU. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"NoAssetReportId": 1,
"TcuName": "sample string 2",
"LastReportTimeStamp": "2025-11-01T15:47:40.5624142+00:00",
"TcuType": "sample string 4"
},
{
"NoAssetReportId": 1,
"TcuName": "sample string 2",
"LastReportTimeStamp": "2025-11-01T15:47:40.5624142+00:00",
"TcuType": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfNoAssetReportModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<NoAssetReportModel>
<NoAssetReportId>1</NoAssetReportId>
<TcuName>sample string 2</TcuName>
<LastReportTimeStamp>2025-11-01T15:47:40.5624142+00:00</LastReportTimeStamp>
<TcuType>sample string 4</TcuType>
</NoAssetReportModel>
<NoAssetReportModel>
<NoAssetReportId>1</NoAssetReportId>
<TcuName>sample string 2</TcuName>
<LastReportTimeStamp>2025-11-01T15:47:40.5624142+00:00</LastReportTimeStamp>
<TcuType>sample string 4</TcuType>
</NoAssetReportModel>
</ArrayOfNoAssetReportModel>