PartLocations
Queryable, Introduced in version 2.28
GET https://localhost:8001/sv/001.1/api/v1/Inventory/PartLocations
Represents a part location.
GUID
B24A64DD-4E57-4FD3-B8EA-B2206EF2E67A
Required permission
Show part
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
Id | Int64 | The business key identifier of the location. |
|
PartId | Int64 | The business key identifier of the part to which the location belong. References Parts |
|
WarehouseId | Int64 | The business key identifier of the warehouse where the location is located. References Warehouses |
|
Warehouse | Warehouses | The warehouse of the location.
|
|
Name | String | The name of the location.
|
|
Balance | Decimal | The balance in standard unit. |
|
LifeCycleState | Int32 | The life cycle state of the location.
|
|
LatestArrivalDate | DateTimeOffset | Latest arrival date for the location. |
|
WorkCenterPickingLocation | Boolean | Whether the location is a work center picking location. |
|
WorkCenterPickingLocationFillingQuantity | Decimal | Specifies the filling quantity when the location is a work center picking location. |
|
OutgoingPickLocation | Boolean | Specifies whether the location is of type pick location. |
|
ArrivalLocation | Boolean | Specifies whether the location is of type arrival location. |
|
Priority | Int32? | Specifies the priority of the location. |
|
OutgoingPickLocationReorderPoint | Decimal | Specifies the pick location reordering point, quantity used when filling pick location. |
|
BatchNumber | String | Batch number when part has traceability of type batch. |
|
SerialNumber | String | Serial number when part has traceability of type serial number. |
|
InventoryStatus | Int32 | The inventory status of the location.
|
|
IsOngoingRefill | Boolean | Specifies if the location is currently being refilled. |
|
RevisionId | Int64? | The business key identifier of the revision of the location. References Revisions |
|
Revision | Revisions | The revision of the location.
|
|
IgnoredBalance | Boolean | Specifies if the balance of the location is to be ignored when calculating Net Requirement and CDT. |
|
PartLocationProductRecords | PartLocationProductRecords[] | A collection of quantity items that holds the quantity of each batch/serial number.
|
Introduced in version 2.29 |
Example
{
"Id": 0,
"PartId": 0,
"WarehouseId": 0,
"Warehouse": null,
"Name": null,
"Balance": 0.0,
"LifeCycleState": 0,
"LatestArrivalDate": "0001-01-01T00:00:00+00:00",
"WorkCenterPickingLocation": false,
"WorkCenterPickingLocationFillingQuantity": 0.0,
"OutgoingPickLocation": false,
"ArrivalLocation": false,
"Priority": null,
"OutgoingPickLocationReorderPoint": 0.0,
"BatchNumber": null,
"SerialNumber": null,
"InventoryStatus": 0,
"IsOngoingRefill": false,
"RevisionId": null,
"Revision": null,
"IgnoredBalance": false,
"PartLocationProductRecords": null
}