GET TerminalsTypes/{id}

Gets a terminal type by its ID, represented as TerminalTypeDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the terminal type.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The terminal type data.

TerminalTypeDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Description

string

None.

Manufacturer

string

None.

TerminalCodeMaxLenght

byte

None.

AuthorizationMode

byte

None.

SupportsLoyalty

boolean

None.

SupportsPriceChange

boolean

None.

SupportsKeepAlive

boolean

None.

MinimumVolume

decimal number

None.

MinimumAmount

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "6a6bdb1a-4bb3-41fe-b57a-90724105bbd9",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "Manufacturer": "sample string 4",
  "TerminalCodeMaxLenght": 64,
  "AuthorizationMode": 64,
  "SupportsLoyalty": true,
  "SupportsPriceChange": true,
  "SupportsKeepAlive": true,
  "MinimumVolume": 1.0,
  "MinimumAmount": 1.0
}

application/xml, text/xml

Sample:
<TerminalTypeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <AuthorizationMode>64</AuthorizationMode>
  <Description>sample string 3</Description>
  <Id>6a6bdb1a-4bb3-41fe-b57a-90724105bbd9</Id>
  <Manufacturer>sample string 4</Manufacturer>
  <MinimumAmount>1</MinimumAmount>
  <MinimumVolume>1</MinimumVolume>
  <Name>sample string 2</Name>
  <SupportsKeepAlive>true</SupportsKeepAlive>
  <SupportsLoyalty>true</SupportsLoyalty>
  <SupportsPriceChange>true</SupportsPriceChange>
  <TerminalCodeMaxLenght>64</TerminalCodeMaxLenght>
</TerminalTypeDto>