GET v6/shipment/masterLabel/{shipmentPalletId}/pallet/coordinates

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shipmentPalletId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ShipmentPalletv6Model
NameDescriptionTypeAdditional information
Pallet

PalletModel

None.

Items

Collection of ShipmentPalletBuildModel

None.

Response Formats

application/json, text/json

Sample:
{
  "pallet": {
    "length": 1.0,
    "width": 2.0
  },
  "items": [
    {
      "sku": "sample string 1",
      "xCoord": 2,
      "yCoord": 3,
      "zCoord": 4,
      "rotation": "sample string 5",
      "length": 6.0,
      "width": 7.0,
      "height": 8.0
    },
    {
      "sku": "sample string 1",
      "xCoord": 2,
      "yCoord": 3,
      "zCoord": 4,
      "rotation": "sample string 5",
      "length": 6.0,
      "width": 7.0,
      "height": 8.0
    }
  ]
}