List inventory Dispatch Items

Service Url: GET /inventoryDispatchItems/{inventoryDispatchId}

Path Parameters: inventoryDispatchId – The Inventory Dispatch Id

Query Parameters: None

Request Body: None

Response Body:

LoadInventoryDispatchItemsResponse

inventoryDispatchItemsList -List<IInventoryDispatchItem> → list of Inventory Dispatch Items

Remarks: Supports both application/xml,application/json media-types

Example Request:1http://localhost:8080/WebRestApi/rest/v1.1/inventoryManagement/inventoryDispatchItems/ID000802

Example Response:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:loadInventoryDispatchItemsResponse xmlns:ns2="http://www.enactor.com/retail" xmlns:ns3="http://www.enactor.com/core" xmlns:ns4="http://www.enactor.com/orders" xmlns:ns5="http://www.enactor.com/crm" xmlns:ns6="http://www.enactor.com/retail/storedRestaurantSaleTransaction/service" xmlns:ns7="http://www.enactor.com/retail/storedRetailTransaction/service" xmlns:ns8="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803" xmlns:ns9="http://www.enactor.com/retail/restaurantTableStatus/service" xmlns:ns10="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/api/200803" xmlns:ns11="http://docs.oasis-open.org/wsbpel/2.0/serviceref" xmlns:ns12="http://www.enactor.com/crm/customerLoyalty/service" xmlns:ns13="http://www.enactor.com/addressLookup/service" xmlns:ns14="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns15="http://www.enactor.com/tools">
    <ns2:inventoryDispatchItemsList>
        <ns2:inventoryDispatchItem>
            <ns2:createdDate>2020-06-11T13:57:41+05:30</ns2:createdDate>
            <ns2:lineNumber>1</ns2:lineNumber>
            <ns2:notes></ns2:notes>
            <ns2:voided>false</ns2:voided>
            <ns2:receivedQty>0</ns2:receivedQty>
            <ns2:receivedCostBase>0</ns2:receivedCostBase>
            <ns2:receivedCostRaw>0</ns2:receivedCostRaw>
            <ns2:receivedRetailExTaxBase>0</ns2:receivedRetailExTaxBase>
            <ns2:receivedRetailExTaxRaw>0</ns2:receivedRetailExTaxRaw>
            <ns2:receivedRetailIncTaxBase>0</ns2:receivedRetailIncTaxBase>
            <ns2:receivedRetailIncTaxRaw>0</ns2:receivedRetailIncTaxRaw>
            <ns2:receivedUnitCostBase>0.0</ns2:receivedUnitCostBase>
            <ns2:receivedUnitCostRaw>0.0</ns2:receivedUnitCostRaw>
            <ns2:dispatchedQty>1</ns2:dispatchedQty>
            <ns2:dispatchedCostBase>0</ns2:dispatchedCostBase>
            <ns2:dispatchedCostRaw>0</ns2:dispatchedCostRaw>
            <ns2:dispatchedRetailExTaxBase>4260</ns2:dispatchedRetailExTaxBase>
            <ns2:dispatchedRetailExTaxRaw>4260</ns2:dispatchedRetailExTaxRaw>
            <ns2:dispatchedRetailIncTaxBase>4260</ns2:dispatchedRetailIncTaxBase>
            <ns2:dispatchedRetailIncTaxRaw>4260</ns2:dispatchedRetailIncTaxRaw>
            <ns2:dispatchedUnitCostBase>0.0</ns2:dispatchedUnitCostBase>
            <ns2:dispatchedUnitCostRaw>0.0</ns2:dispatchedUnitCostRaw>
            <ns2:dispatchedInventoryType></ns2:dispatchedInventoryType>
            <ns2:inventoryDispatchId>ID000802</ns2:inventoryDispatchId>
            <ns2:productId>MB709SN-1</ns2:productId>
            <ns2:requiredQty>0</ns2:requiredQty>
            <ns2:destinationLocation/>
            <ns2:isSerialNumberTracked>false</ns2:isSerialNumberTracked>
            <ns2:serialNumbers/>
            <ns2:containerId>00003000011099900352</ns2:containerId>
        </ns2:inventoryDispatchItem>
    </ns2:inventoryDispatchItemsList>
</ns2:loadInventoryDispatchItemsResponse>
{
    "inventoryDispatchItemsList": [
        {
            "inventoryDispatchId": "ID000802",
            "productId": {
                "id": "MB709SN-1"
            },
            "requiredQty": 0,
            "destinationLocation": {},
            "isSerialNumberTracked": false,
            "containerId": "00003000011099900352",
            "lineNumber": 1,
            "voided": false,
            "receivedQty": 0,
            "receivedCostBase": 0,
            "receivedCostRaw": 0,
            "receivedRetailExTaxBase": 0,
            "receivedRetailExTaxRaw": 0,
            "receivedRetailIncTaxBase": 0,
            "receivedRetailIncTaxRaw": 0,
            "receivedUnitCostBase": 0.0,
            "receivedUnitCostRaw": 0.0,
            "dispatchedQty": 1,
            "dispatchedCostBase": 0,
            "dispatchedCostRaw": 0,
            "dispatchedRetailExTaxBase": 4260,
            "dispatchedRetailExTaxRaw": 4260,
            "dispatchedRetailIncTaxBase": 4260,
            "dispatchedRetailIncTaxRaw": 4260,
            "dispatchedUnitCostBase": 0.0,
            "dispatchedUnitCostRaw": 0.0,
            "createdDate": "2020-06-11T13:57:41.000+05:30"
        }
    ]
}
Go to Top