GET v1/TcuSims/{id}

Get the SIM information for the requested TCU.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID of the TCU to get SIM information for.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Lhp.EquipmentIntelligence.WebApi.Models.V1.TcuSimModel
NameDescriptionTypeAdditional 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-09-07T17:53:54.5826149+00:00",
  "AssignedTo": "2024-09-07T17:53:54.5826149+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-09-07T17:53:54.5826149+00:00</AssignedFrom>
  <AssignedTo>2024-09-07T17:53:54.5826149+00:00</AssignedTo>
  <IsCurrent>true</IsCurrent>
</TcuSimModel>