Inventory tracking details including serial number, aisle, bin, and row per line item.
Create and maintain document line details by creating and updating the trackingDetail
in the owning document line objects.
Returns a collection with a key, ID, and link for each Purchasing document line detail object. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and specify the properties that are returned.
OK
Bad Request
{- "value": {
- "ia::result": [
- {
- "key": "1",
- "id": "1",
- "href": "/objects/purchasing/document-line-detail/1"
}, - {
- "key": "2",
- "id": "2",
- "href": "/objects/purchasing/document-line-detail/2"
}, - {
- "key": "3",
- "id": "3",
- "href": "/objects/purchasing/document-line-detail/3"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
}
Returns detailed information for a specified purchasing document line detail object.
key required | string System-assigned unique key for the document line detail object. Example: 12 |
OK
Bad Request
{- "ia::result": {
- "id": "11",
- "key": "11",
- "purchasingDocumentLine": {
- "id": "883",
- "key": "883",
- "documentType": "Purchase Order",
- "href": "/objects/purchasing/document-line::Purchase%20Order/883"
}, - "item": {
- "id": "Battery",
- "key": "258",
- "href": "/objects/item/258"
}, - "quantity": "1",
- "serialNumber": "SLX 728",
- "lotNumber": "1981",
- "aisle": {
- "key": "1",
- "id": "A1",
- "href": "/objects/inventory-control/aisle/1"
}, - "row": {
- "key": "12",
- "id": "R12",
- "href": "/objects/inventory-control/row/12"
}, - "bin": {
- "key": "30",
- "id": "B30",
- "href": "/objects/inventory-control/bin/30"
}, - "expirationDate": "2023-12-31",
- "audit": {
- "createdDateTime": "2024-06-13T00:00:00Z",
- "modifiedDateTime": "2024-06-26T05:51:05Z",
- "createdByUser": {
- "key": "1",
- "href": "/objects/company-config/user/1"
}, - "createdBy": "1",
- "modifiedByUser": {
- "key": "1",
- "href": "/objects/company-config/user/1"
}, - "modifiedBy": "1"
}, - "href": "/objects/purchasing/document-line-detail/11"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}