GET stock_services/delivery/{id}/items

This method will provide an object containing a unique download ID and list of all items included in the specified delivery. Multiple item lists can be provided for a single delivery.

Request Information

Parameters

NameDescriptionAdditional information
id
The ID of the required docket.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "downloadId": 1,
  "items": [
    {
      "id": 1,
      "barcode": "sample string 2",
      "alternateBarcode": "sample string 3",
      "description": "sample string 4"
    },
    {
      "id": 1,
      "barcode": "sample string 2",
      "alternateBarcode": "sample string 3",
      "description": "sample string 4"
    },
    {
      "id": 1,
      "barcode": "sample string 2",
      "alternateBarcode": "sample string 3",
      "description": "sample string 4"
    }
  ]
}