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.
TerminalInventoryMovementDto| Name | 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": "0d6def4a-7687-4e28-934e-c95e7b0de76b",
"IdTerminal": "ce39363b-3ba4-41eb-ba87-5373395afc3a",
"IdTerminalInventoryLocation": "22f0d7d2-1db4-4dfe-a8f7-8a356e309297",
"IdNetwork": "1ddf7f04-8b11-40de-8bc2-418fb75e7f0e",
"TerminalStatus": 5,
"LocalDate": "2025-12-15T12:59:53.5943158Z",
"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>0d6def4a-7687-4e28-934e-c95e7b0de76b</Id> <IdNetwork>1ddf7f04-8b11-40de-8bc2-418fb75e7f0e</IdNetwork> <IdTerminal>ce39363b-3ba4-41eb-ba87-5373395afc3a</IdTerminal> <IdTerminalInventoryLocation>22f0d7d2-1db4-4dfe-a8f7-8a356e309297</IdTerminalInventoryLocation> <LocalDate>2025-12-15T12:59:53.5943158Z</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>