GET TerminalsInventoryMovements/{id}
Gets a terminalsInventoryMovement by it's ID, represented as TerminalsInventoryMovementDto.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The ID of the terminalsInventoryMovement. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The terminalsInventoryMovement data.
TerminalInventoryMovementDtoName | Description | Type | Additional 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": "218a8d03-fdc0-4e84-9a47-90a495e3300f", "IdTerminal": "5e76c30b-74f9-45e3-b6f4-cb609159e2a8", "IdTerminalInventoryLocation": "cab087ad-a440-4cff-bca0-2c618f9e4a87", "IdNetwork": "583be8c4-bc6f-4bbf-bbc9-f724899ebbcd", "TerminalStatus": 5, "LocalDate": "2025-09-13T02:15:14.4552676Z", "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>218a8d03-fdc0-4e84-9a47-90a495e3300f</Id> <IdNetwork>583be8c4-bc6f-4bbf-bbc9-f724899ebbcd</IdNetwork> <IdTerminal>5e76c30b-74f9-45e3-b6f4-cb609159e2a8</IdTerminal> <IdTerminalInventoryLocation>cab087ad-a440-4cff-bca0-2c618f9e4a87</IdTerminalInventoryLocation> <LocalDate>2025-09-13T02:15:14.4552676Z</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>