GET v1/Tcus

Retrieve a list of all TCUs owned by the customer.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Lhp.EquipmentIntelligence.WebApi.Models.V1.TcuModel
NameDescriptionTypeAdditional information
TcuId

integer

None.

BuildId

integer

None.

TcuTypeId

Lhp.EquipmentIntelligence.TcuTypes

None.

Name

string

None.

SerialNumber

string

None.

Imei

string

None.

SimId

integer

None.

OwningCustomerId

ID of the customer that currently owns the TCU

integer

None.

OriginatingCustomerId

ID of the customer that originated the TCU. May be different from the owner if the TCU has been sold down.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TcuId": 1,
    "BuildId": 1,
    "TcuTypeId": 0,
    "Name": "sample string 2",
    "SerialNumber": "sample string 3",
    "Imei": "sample string 4",
    "SimId": 1,
    "OwningCustomerId": 5,
    "OriginatingCustomerId": 6
  },
  {
    "TcuId": 1,
    "BuildId": 1,
    "TcuTypeId": 0,
    "Name": "sample string 2",
    "SerialNumber": "sample string 3",
    "Imei": "sample string 4",
    "SimId": 1,
    "OwningCustomerId": 5,
    "OriginatingCustomerId": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfTcuModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TcuModel>
    <TcuId>1</TcuId>
    <BuildId>1</BuildId>
    <TcuTypeId>None</TcuTypeId>
    <Name>sample string 2</Name>
    <SerialNumber>sample string 3</SerialNumber>
    <Imei>sample string 4</Imei>
    <SimId>1</SimId>
    <OwningCustomerId>5</OwningCustomerId>
    <OriginatingCustomerId>6</OriginatingCustomerId>
  </TcuModel>
  <TcuModel>
    <TcuId>1</TcuId>
    <BuildId>1</BuildId>
    <TcuTypeId>None</TcuTypeId>
    <Name>sample string 2</Name>
    <SerialNumber>sample string 3</SerialNumber>
    <Imei>sample string 4</Imei>
    <SimId>1</SimId>
    <OwningCustomerId>5</OwningCustomerId>
    <OriginatingCustomerId>6</OriginatingCustomerId>
  </TcuModel>
</ArrayOfTcuModel>