GET IdentificationsTypesModels/{id}

Gets a identificationTypeModel by it's ID, represented as IdentificationTypeModelDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the identificationTypeModel.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The identificationTypeModel data.

IdentificationTypeModelDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IdNetwork

globally unique identifier

None.

IdentificationType

integer

None.

Description

string

None.

Instalable

boolean

None.

Personalized

boolean

None.

Reusable

boolean

None.

MultipleAssign

boolean

None.

ValidateExpDate

boolean

None.

RequierePin

boolean

None.

PinDigits

integer

None.

IgnoreTerminalVehicleIdBehavior

boolean

None.

CustomTrack

boolean

None.

RequiresPINChange

boolean

None.

NotifyOnAssignment

boolean

None.

ValidateInactivity

boolean

None.

InactivityPeriod

byte

None.

InactivityPeriodValue

integer

None.

AutomaticRenewal

boolean

None.

RenewalExpirationPeriod

byte

None.

RenewalExpirationPeriodValue

integer

None.

TrackCustomizationType

byte

None.

TrackCustomizationPrefix

string

None.

TrackCustomizationSuffix

string

None.

SingleUse

boolean

None.

EncryptedFileOnNotification

boolean

None.

TrackEncryption

boolean

None.

FileAttachedOnNotification

boolean

None.

NotSupportOffline

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "6124bae3-805c-4f76-ab54-1b241fadb833",
  "IdNetwork": "799034ed-ce50-4f63-bdd5-f739ad74cd7c",
  "IdentificationType": 3,
  "Description": "sample string 4",
  "Instalable": true,
  "Personalized": true,
  "Reusable": true,
  "MultipleAssign": true,
  "ValidateExpDate": true,
  "RequierePin": true,
  "PinDigits": 11,
  "IgnoreTerminalVehicleIdBehavior": true,
  "CustomTrack": true,
  "RequiresPINChange": true,
  "NotifyOnAssignment": true,
  "ValidateInactivity": true,
  "InactivityPeriod": 64,
  "InactivityPeriodValue": 1,
  "AutomaticRenewal": true,
  "RenewalExpirationPeriod": 64,
  "RenewalExpirationPeriodValue": 1,
  "TrackCustomizationType": 64,
  "TrackCustomizationPrefix": "sample string 18",
  "TrackCustomizationSuffix": "sample string 19",
  "SingleUse": true,
  "EncryptedFileOnNotification": true,
  "TrackEncryption": true,
  "FileAttachedOnNotification": true,
  "NotSupportOffline": true
}

application/xml, text/xml

Sample:
<IdentificationTypeModelDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <AutomaticRenewal>true</AutomaticRenewal>
  <CustomTrack>true</CustomTrack>
  <Description>sample string 4</Description>
  <EncryptedFileOnNotification>true</EncryptedFileOnNotification>
  <FileAttachedOnNotification>true</FileAttachedOnNotification>
  <Id>6124bae3-805c-4f76-ab54-1b241fadb833</Id>
  <IdNetwork>799034ed-ce50-4f63-bdd5-f739ad74cd7c</IdNetwork>
  <IdentificationType>3</IdentificationType>
  <IgnoreTerminalVehicleIdBehavior>true</IgnoreTerminalVehicleIdBehavior>
  <InactivityPeriod>64</InactivityPeriod>
  <InactivityPeriodValue>1</InactivityPeriodValue>
  <Instalable>true</Instalable>
  <MultipleAssign>true</MultipleAssign>
  <NotSupportOffline>true</NotSupportOffline>
  <NotifyOnAssignment>true</NotifyOnAssignment>
  <Personalized>true</Personalized>
  <PinDigits>11</PinDigits>
  <RenewalExpirationPeriod>64</RenewalExpirationPeriod>
  <RenewalExpirationPeriodValue>1</RenewalExpirationPeriodValue>
  <RequierePin>true</RequierePin>
  <RequiresPINChange>true</RequiresPINChange>
  <Reusable>true</Reusable>
  <SingleUse>true</SingleUse>
  <TrackCustomizationPrefix>sample string 18</TrackCustomizationPrefix>
  <TrackCustomizationSuffix>sample string 19</TrackCustomizationSuffix>
  <TrackCustomizationType>64</TrackCustomizationType>
  <TrackEncryption>true</TrackEncryption>
  <ValidateExpDate>true</ValidateExpDate>
  <ValidateInactivity>true</ValidateInactivity>
</IdentificationTypeModelDto>