GET v2/TcuTypes/{id}
Get the specified TCU type by ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The TCU Type ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Lhp.EquipmentIntelligence.WebApi.Client.Models.TcuType| Name | Description | Type | Additional information |
|---|---|---|---|
| TcuTypeId |
The TCU type ID |
Lhp.EquipmentIntelligence.TcuTypes |
None. |
| TcuProtocolId |
The TCU protocol |
Lhp.EquipmentIntelligence.TcuProtocols |
None. |
| TcuProtocolName |
The TCU protocol name |
string |
None. |
| Name |
The TCU type name |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TcuTypeId": 0,
"TcuProtocolId": 0,
"TcuProtocolName": "sample string 1",
"Name": "sample string 2"
}
application/xml, text/xml
Sample:
<TcuType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TcuTypeId>None</TcuTypeId> <TcuProtocolId>None</TcuProtocolId> <TcuProtocolName>sample string 1</TcuProtocolName> <Name>sample string 2</Name> </TcuType>