List of warehouse inventory details including serial number, aisle, bin, and row per item.
Returns a collection with a key, ID, and link for each purchasing document line details.
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: 76 |
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": "1",
- "id": "R1",
- "href": "/objects/inventory-control/row/1"
}, - "bin": {
- "key": "1",
- "id": "B1",
- "href": "/objects/inventory-control/bin/1"
}, - "expirationDate": "2023-12-31",
- "audit": {
- "createdDateTime": "2023-12-14T04:58:04Z",
- "modifiedDateTime": "2023-12-14T04:58:04Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "href": "/objects/purchasing/document-line-detail/11"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Use the query service to find document line details that meet certain criteria and to specify the properties that are returned.
OK