GET TerminalsInventoryMovements/{id}

Gets a terminalsInventoryMovement by it's ID, represented as TerminalsInventoryMovementDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the terminalsInventoryMovement.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The terminalsInventoryMovement data.

TerminalInventoryMovementDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IdTerminal

globally unique identifier

None.

IdTerminalInventoryLocation

globally unique identifier

None.

IdNetwork

globally unique identifier

None.

TerminalStatus

integer

None.

LocalDate

date

None.

Reason

string

None.

TerminalTypeName

string

None.

TerminalTypeModelName

string

None.

TerminalCode

string

None.

Location

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "49bf83b0-a3f2-4b5f-a387-8a4aacedc215",
  "IdTerminal": "21772fbd-a1c4-4906-85bc-935420dd6d80",
  "IdTerminalInventoryLocation": "56b87b11-6f5b-4d25-b1b4-c49f3578bba1",
  "IdNetwork": "4ab91817-ab5a-47f7-9f10-55b6ebd9cb2d",
  "TerminalStatus": 5,
  "LocalDate": "2025-04-25T16:19:39.072837Z",
  "Reason": "sample string 7",
  "TerminalTypeName": "sample string 8",
  "TerminalTypeModelName": "sample string 9",
  "TerminalCode": "sample string 10",
  "Location": "sample string 11"
}

application/xml, text/xml

Sample:
<TerminalInventoryMovementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <Id>49bf83b0-a3f2-4b5f-a387-8a4aacedc215</Id>
  <IdNetwork>4ab91817-ab5a-47f7-9f10-55b6ebd9cb2d</IdNetwork>
  <IdTerminal>21772fbd-a1c4-4906-85bc-935420dd6d80</IdTerminal>
  <IdTerminalInventoryLocation>56b87b11-6f5b-4d25-b1b4-c49f3578bba1</IdTerminalInventoryLocation>
  <LocalDate>2025-04-25T16:19:39.072837Z</LocalDate>
  <Location>sample string 11</Location>
  <Reason>sample string 7</Reason>
  <TerminalCode>sample string 10</TerminalCode>
  <TerminalStatus>5</TerminalStatus>
  <TerminalTypeModelName>sample string 9</TerminalTypeModelName>
  <TerminalTypeName>sample string 8</TerminalTypeName>
</TerminalInventoryMovementDto>