Represents the request payload for submitting updates to the status of shipments, containing an array of one or more ShipmentStatusUpdate objects.

SubmitShipmentStatusUpdatesRequest

interface SubmitShipmentStatusUpdatesRequest {
    shipmentStatusUpdates?: ShipmentStatusUpdate[];
}

Properties

shipmentStatusUpdates?: ShipmentStatusUpdate[]

Contains a list of one or more ShipmentStatusUpdate objects, each representing an update to the status of a specific shipment.

SubmitShipmentStatusUpdatesRequest