Request Information
Returns the stock movement with the specified id.
Example URL:
v2.0/StockMovements/{id}
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| id | integer |
Required |
None.
Response Information
StockMovementApiModelGet
| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount |
Current stock balance |
decimal number |
None. |
| DateCreated |
Date the entity was created |
date |
None. |
| DateLastChange |
Date the entity was last changed |
date |
None. |
| DateOfMovement |
Date of stock movement |
date |
None. |
| Id |
Resource identifier |
integer |
None. |
| Note |
Your note for this stock movement |
string |
None. |
| PriceListItemId |
Pricelist item reference |
integer |
None. |
Sample:
{
"Amount": 1.0,
"DateCreated": "2025-11-03T09:36:24.7098791+00:00",
"DateLastChange": "2025-11-03T09:36:24.7098791+00:00",
"DateOfMovement": "2025-11-03T09:36:24.7098791+00:00",
"Id": 5,
"Note": "sample string 6",
"PriceListItemId": 7
}
Sample:
<StockMovementApiModelGet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.StockMovement"> <Amount>1</Amount> <DateCreated>2025-11-03T09:36:24.7098791+00:00</DateCreated> <DateLastChange>2025-11-03T09:36:24.7098791+00:00</DateLastChange> <DateOfMovement>2025-11-03T09:36:24.7098791+00:00</DateOfMovement> <Id>5</Id> <Note>sample string 6</Note> <PriceListItemId>7</PriceListItemId> </StockMovementApiModelGet>