Selling Partner API SDK for JavaScript
    Preparing search index...

    Represents an AWD replenishment order.

    interface ReplenishmentOrder {
        confirmedOn?: string;
        createdAt?: string;
        distributionIneligibleReasons?: DistributionIneligibleReason[];
        eligibleProducts?: DistributionProduct[];
        orderId: string;
        outboundShipments: OutboundShipmentSummary[];
        products?: DistributionProduct[];
        shippedProducts?: DistributionProduct[];
        status: ReplenishmentOrderStatus;
        updatedAt?: string;
    }
    Index

    Properties

    confirmedOn?: string

    Date on which this replenishment order was confirmed.

    createdAt?: string

    Date on which this replenishment order was created.

    distributionIneligibleReasons?: DistributionIneligibleReason[]

    Distribution errors associated with the order related to the products or packages to replenish. This field will be populated if the order has products or packages which failed validation.

    eligibleProducts?: DistributionProduct[]

    List of product units that are eligible for replenishment.

    orderId: string

    Order Id of the replenishment order.

    outboundShipments: OutboundShipmentSummary[]

    List of outbound shipments that are part of this order.

    products?: DistributionProduct[]

    Requested amount of single product units to be replenished.

    shippedProducts?: DistributionProduct[]

    Outbound product units that are shipped after the execution has completed post confirmation.

    updatedAt?: string

    Date on which this replenishment order was last updated.