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": "4e43db74-3589-4fbb-9330-d611142f275e",
"IdTerminal": "f228050a-24d6-4931-9d71-9e385d563955",
"IdTerminalInventoryLocation": "681e41f2-ae51-4aa0-9955-4dbde2ad0d13",
"IdNetwork": "c1c4d65d-7e04-417c-898a-b3344d95c0ea",
"TerminalStatus": 5,
"LocalDate": "2025-10-29T05:32:29.8841505Z",
"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>4e43db74-3589-4fbb-9330-d611142f275e</Id> <IdNetwork>c1c4d65d-7e04-417c-898a-b3344d95c0ea</IdNetwork> <IdTerminal>f228050a-24d6-4931-9d71-9e385d563955</IdTerminal> <IdTerminalInventoryLocation>681e41f2-ae51-4aa0-9955-4dbde2ad0d13</IdTerminalInventoryLocation> <LocalDate>2025-10-29T05:32:29.8841505Z</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>