GET v1/TcuTypes/{id}
Get the TCU Type for the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID of the TCU Type to retrieve. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Lhp.EquipmentIntelligence.WebApi.Models.V1.TcuTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TcuTypeId | integer |
None. |
|
| TcuProtocolId | integer |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TcuTypeId": 1,
"TcuProtocolId": 2,
"Name": "sample string 3"
}
application/xml, text/xml
Sample:
<TcuTypeModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TcuTypeId>1</TcuTypeId> <TcuProtocolId>2</TcuProtocolId> <Name>sample string 3</Name> </TcuTypeModel>