GET v1/Tcus/{id}/GetByImei
Retrieve a TCU by IMEI.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | IMEI of the TCU | string | Required | 
Body Parameters
None.
Response Information
Resource Description
Lhp.EquipmentIntelligence.WebApi.Models.V1.TcuModel| Name | Description | Type | Additional 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
}
        application/xml, text/xml
            Sample:
<TcuModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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>