User StoriesOrder HAWB Labels for Shipments

Order HAWB Labels for Shipments

If a customer drops off shipments at the CHI warehouse without HAWB labels already put to them, then the HAWB labels can be ordered by the customer through the Warehouse API. The CHI employees will then print and stick the labels to the shipment.

Prerequisite: The shipments that should be labeled have to be announced/created in advance via the Shipment API.

Ordering HAWB labels for shipments is performed by sending a POST request to /order/hawbLabel.

POST /order/hawbLabel - Payload:

{
  "houseAirWaybillNumber": "HAWB001",
  "shipments": [
    {
      "shipmentId": "SHP001"
    },
    {
      "alternativeReference": "F-123456789"
    }
  ],
  "textualInstructions": "Put a label on every side of the shipment."
}

The shipments are either referenced by “shipmentId” or the “alternativeReference”.