POST v1/TcuSims

Associates a SIM with a TCU.

Request Information

URI Parameters

None.

Body Parameters

Details of the desired TCU to SIM association.

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.

Request Formats

application/json, text/json

Sample:
{
  "TcuSimId": 1,
  "TcuId": 2,
  "SimId": 3,
  "AssignedFrom": "2024-10-18T05:42:46.360756+00:00",
  "AssignedTo": "2024-10-18T05:42:46.360756+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-10-18T05:42:46.360756+00:00</AssignedFrom>
  <AssignedTo>2024-10-18T05:42:46.360756+00:00</AssignedTo>
  <IsCurrent>true</IsCurrent>
</TcuSimModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.