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.TcuSimModelName | 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": "2024-11-20T18:18:11.64032+00:00", "AssignedTo": "2024-11-20T18:18:11.64032+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>2024-11-20T18:18:11.64032+00:00</AssignedFrom> <AssignedTo>2024-11-20T18:18:11.64032+00:00</AssignedTo> <IsCurrent>true</IsCurrent> </TcuSimModel>