GET v1/Tcus/{id}/GetTcuSimByTcuId
Retrieve a TCU by the ID of the SIM installed in the TCU.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID of the SIM installed in the TCU. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Lhp.EquipmentIntelligence.WebApi.Models.V1.TcuSimModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TcuSimId |
Auto-generated primary key |
integer |
None. |
| TcuId |
The primary key of the TCU |
integer |
None. |
| SimId |
The primary key of the SIM |
integer |
None. |
| AssignedFrom |
The UTC date on which the association was made |
date |
None. |
| AssignedTo |
The UTC date on which the association was removed |
date |
None. |
| IsCurrent |
Whether or not this is the most recent TCU/SIM association |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"TcuSimId": 1,
"TcuId": 2,
"SimId": 3,
"AssignedFrom": "2025-10-27T03:46:29.3303392+00:00",
"AssignedTo": "2025-10-27T03:46:29.3459396+00:00",
"IsCurrent": true
}
application/xml, text/xml
Sample:
<TcuSimModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TcuSimId>1</TcuSimId> <TcuId>2</TcuId> <SimId>3</SimId> <AssignedFrom>2025-10-27T03:46:29.3303392+00:00</AssignedFrom> <AssignedTo>2025-10-27T03:46:29.3459396+00:00</AssignedTo> <IsCurrent>true</IsCurrent> </TcuSimModel>