Details about a shipment.

ShipmentDetails

interface ShipmentDetails {
    estimatedDeliveryDate?: string;
    isPriorityShipment?: boolean;
    shipmentStatus: ShipmentDetailsShipmentStatusEnum;
    shippedDate: string;
    vendorOrderNumber?: string;
}

Properties

estimatedDeliveryDate?: string

The date on which the shipment is expected to reach the buyer's warehouse. The date is estimated based on the average transit time between the ship-from location and the destination. Usually, the exact appointment time is unknown when creating the shipment confirmation and is later provided by the buyer.

ShipmentDetails

isPriorityShipment?: boolean

Provide the priority of the shipment.

ShipmentDetails

The shipment status.

ShipmentDetails

shippedDate: string

The date of the shipment's departure from vendor's location. Vendors send ASNs within 30 minutes of departure from their warehouse/distribution center or six hours prior to the appointment time at the Amazon destination warehouse. The shipped date mentioned in the shipment confirmation cannot be in the future.

ShipmentDetails

vendorOrderNumber?: string

The vendor order number is a unique identifier generated by a vendor for their reference.

ShipmentDetails

MMNEPVFCICPMFPCPTTAAATR