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": "f67aaa15-c3b0-472c-8306-63b4838aab66", "IdTerminal": "2783d48c-e061-4b57-8d38-59ef5ebba7e3", "IdTerminalInventoryLocation": "0af9b04e-374e-436e-a003-ce07eb67e4b5", "IdNetwork": "3827602b-a63c-4967-84ab-d3cdfd4dbf93", "TerminalStatus": 5, "LocalDate": "2025-06-12T07:55:30.1865135Z", "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>f67aaa15-c3b0-472c-8306-63b4838aab66</Id> <IdNetwork>3827602b-a63c-4967-84ab-d3cdfd4dbf93</IdNetwork> <IdTerminal>2783d48c-e061-4b57-8d38-59ef5ebba7e3</IdTerminal> <IdTerminalInventoryLocation>0af9b04e-374e-436e-a003-ce07eb67e4b5</IdTerminalInventoryLocation> <LocalDate>2025-06-12T07:55:30.1865135Z</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>