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": "8378cb60-90ee-4db4-b40e-6918d50a5630", "IdTerminal": "ed7bcf14-00bc-49d3-a3d4-a91be1890bfa", "IdTerminalInventoryLocation": "753692ba-8861-4bb8-8eec-e6d0c5a768ab", "IdNetwork": "b7434487-87e1-475f-b375-38b4fd502013", "TerminalStatus": 5, "LocalDate": "2025-07-12T00:29:24.6861255Z", "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>8378cb60-90ee-4db4-b40e-6918d50a5630</Id> <IdNetwork>b7434487-87e1-475f-b375-38b4fd502013</IdNetwork> <IdTerminal>ed7bcf14-00bc-49d3-a3d4-a91be1890bfa</IdTerminal> <IdTerminalInventoryLocation>753692ba-8861-4bb8-8eec-e6d0c5a768ab</IdTerminalInventoryLocation> <LocalDate>2025-07-12T00:29:24.6861255Z</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>