Details for the shipment status update given by the vendor for the specific package.

StatusUpdateDetails

interface StatusUpdateDetails {
    reasonCode: string;
    shipmentSchedule?: StatusUpdateDetailsShipmentSchedule;
    statusCode: string;
    statusDateTime: string;
    statusLocationAddress: Address;
    trackingNumber: string;
}

Properties

reasonCode: string

Provides a reason code for the status of the package that will provide additional information about the transportation status. For more information, refer to the Additional Fields Explanation.

StatusUpdateDetails

StatusUpdateDetails

statusCode: string

Indicates the shipment status code of the package that provides transportation information for Amazon tracking systems and ultimately for the final customer. For more information, refer to the Additional Fields Explanation.

StatusUpdateDetails

statusDateTime: string

The date and time when the shipment status was updated. This field is expected to be in ISO-8601 date/time format, with UTC time zone or UTC offset. For example, 2020-07-16T23:00:00Z or 2020-07-16T23:00:00+01:00.

StatusUpdateDetails

statusLocationAddress: Address

StatusUpdateDetails

trackingNumber: string

This is required to be provided for every package and should match with the trackingNumber sent for the shipment confirmation.

StatusUpdateDetails