GET TerminalsTypesModels/{id}
Gets a terminal type model by its ID, represented as TerminalTypeModelDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the terminal type model. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The terminal type model data.
TerminalTypeModelDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdTerminalType | globally unique identifier |
None. |
|
| TerminalTypeName | string |
None. |
|
| Name | string |
None. |
|
| Parameters | Collection of TerminalTypeModelParameterDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "22d82d84-1f0d-4b8b-b0e2-81e5bb54521d",
"IdTerminalType": "3dadc588-5c42-42bb-9ee3-ea326c8bcc34",
"TerminalTypeName": "sample string 3",
"Name": "sample string 4",
"Parameters": [
{
"Id": "f2c94eac-3699-4d94-ad11-adaeeedc498e",
"Key": "sample string 2",
"Order": 64
},
{
"Id": "f2c94eac-3699-4d94-ad11-adaeeedc498e",
"Key": "sample string 2",
"Order": 64
}
]
}
application/xml, text/xml
Sample:
<TerminalTypeModelDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Id>22d82d84-1f0d-4b8b-b0e2-81e5bb54521d</Id>
<IdTerminalType>3dadc588-5c42-42bb-9ee3-ea326c8bcc34</IdTerminalType>
<Name>sample string 4</Name>
<Parameters>
<TerminalTypeModelParameterDto>
<Id>f2c94eac-3699-4d94-ad11-adaeeedc498e</Id>
<Key>sample string 2</Key>
<Order>64</Order>
</TerminalTypeModelParameterDto>
<TerminalTypeModelParameterDto>
<Id>f2c94eac-3699-4d94-ad11-adaeeedc498e</Id>
<Key>sample string 2</Key>
<Order>64</Order>
</TerminalTypeModelParameterDto>
</Parameters>
<TerminalTypeName>sample string 3</TerminalTypeName>
</TerminalTypeModelDto>