PUT v1/TcuSims/{id}

Updates the SIM information for a TCU.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID of the TCU to update SIM information for.

integer

Required

Body Parameters

New details of the SIM for the TCU.

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-09-07T17:51:30.0024346+00:00",
  "AssignedTo": "2024-09-07T17:51:30.0024346+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:51:30.0024346+00:00</AssignedFrom>
  <AssignedTo>2024-09-07T17:51:30.0024346+00:00</AssignedTo>
  <IsCurrent>true</IsCurrent>
</TcuSimModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.