StockTransactions
Queryable, Introduced in version 22.4
GET https://localhost:8001/sv/001.1/api/v1/Inventory/StockTransactions
Represents a stock transaction.
GUID
F4B5074F-7694-45F4-91CE-67602641773C
Required permission
Show basic data for part
Properties
| Name | Type | Summary | Introduced in |
|---|---|---|---|
| Id | Int64 | The business key identifier of the stock transaction. |
|
| PartNumber | String | The part number of the stock transaction.
|
|
| PartId | Int64? | The business key identifier of the part that was involved in the stock transaction. This value might not be set even though a part always is involved in a stock transaction, read part number to identify involved part in that case.
|
|
| BalanceChange | Decimal | The balance change of the stock transaction. |
|
| BalanceOnPartAfterChange | Decimal | The balance on the part after the stock transaction. |
|
| BalanceOnLocationAfterChange | Decimal | The balance on the location after the stock transaction. |
|
| LoggingTimeStamp | DateTimeOffset | The logging timestamp of the stock transaction. |
|
| DeliveryDate | DateTimeOffset | The delivery date of the stock transaction. |
|
| LocationName | String | The location name of the stock transaction.
|
|
| BusinessTransactionId | Int64 | The business transaction identity of the stock transaction. |
|
| WarehouseId | Int64 | The business key identifier of the warehouse where the stock transaction occured.
|
|
| PhysicalInventoryListNumber | Int64? | The physical inventory list number of the stock transaction. |
|
| PartLocationId | Int64? | The business key identifier of the part location where the stock transaction occured.
|
|
| ProductRecordId | Int64? | The business key identifier of the product record used in the stock transaction.
|
|
| BatchNumber | String | The batch number of the product record in this stock transaction. |
Introduced in version 23.4 |
| OrderNumber | String | The order number associated to this stock transaction. |
Introduced in version 23.4 |
| BusinessTransactionContextType | Int32 | The type of the business transaction context of this stock transaction.
|
Introduced in version 23.4 |
| StandardPrice | Decimal | The standard price of the stock transaction. |
Introduced in version 25.9 |
| Price | Decimal? | The price of the stock transaction. |
Introduced in version 25.9 |
| ReportedPrice | Decimal | The reported price of the stock transaction. |
Introduced in version 25.9 |
| Amount | Decimal | The calculated amount based on Price multiplied by BalanceChange of the stock transaction. |
Introduced in version 25.9 |
Example
{
"Id": 0,
"PartNumber": null,
"PartId": null,
"BalanceChange": 0.0,
"BalanceOnPartAfterChange": 0.0,
"BalanceOnLocationAfterChange": 0.0,
"LoggingTimeStamp": "0001-01-01T00:00:00+00:00",
"DeliveryDate": "0001-01-01T00:00:00+00:00",
"LocationName": null,
"BusinessTransactionId": 0,
"WarehouseId": 0,
"PhysicalInventoryListNumber": null,
"PartLocationId": null,
"ProductRecordId": null,
"BatchNumber": null,
"OrderNumber": null,
"BusinessTransactionContextType": 0,
"StandardPrice": 0.0,
"Price": null,
"ReportedPrice": 0.0,
"Amount": 0.0
}