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

    The information required by a selling partner to issue a shipment invoice.

    interface ShipmentDetail {
        AmazonOrderId?: string;
        AmazonShipmentId?: string;
        BuyerCounty?: string;
        BuyerName?: string;
        BuyerTaxInfo?: BuyerTaxInfo;
        MarketplaceId?: string;
        MarketplaceTaxInfo?: MarketplaceTaxInfo;
        PaymentMethodDetails?: string[];
        Payments?: PaymentInformation[];
        PurchaseDate?: string;
        SellerDisplayName?: string;
        SellerId?: string;
        ShipmentItems?: ShipmentItem[];
        ShippingAddress?: Address;
        WarehouseId?: string;
    }
    Index

    Properties

    AmazonOrderId?: string

    The Amazon-defined identifier for the order.

    AmazonShipmentId?: string

    The Amazon-defined identifier for the shipment.

    BuyerCounty?: string

    The county of the buyer.

    BuyerName?: string

    The name of the buyer.

    BuyerTaxInfo?: BuyerTaxInfo
    MarketplaceId?: string

    The identifier for the marketplace where the order was placed.

    MarketplaceTaxInfo?: MarketplaceTaxInfo
    PaymentMethodDetails?: string[]

    The list of payment method details.

    Payments?: PaymentInformation[]

    List of payment transactions

    PurchaseDate?: string

    The date and time when the order was created.

    SellerDisplayName?: string

    The seller’s friendly name registered in the marketplace.

    SellerId?: string

    The seller identifier.

    ShipmentItems?: ShipmentItem[]

    A list of shipment items.

    ShippingAddress?: Address
    WarehouseId?: string

    The Amazon-defined identifier for the warehouse.