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

ShipmentDetail

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

Properties

AmazonOrderId?: string

The Amazon-defined identifier for the order.

ShipmentDetail

AmazonShipmentId?: string

The Amazon-defined identifier for the shipment.

ShipmentDetail

BuyerCounty?: string

The county of the buyer.

ShipmentDetail

BuyerName?: string

The name of the buyer.

ShipmentDetail

BuyerTaxInfo?: BuyerTaxInfo

ShipmentDetail

MarketplaceId?: string

The identifier for the marketplace where the order was placed.

ShipmentDetail

MarketplaceTaxInfo?: MarketplaceTaxInfo

ShipmentDetail

PaymentMethodDetails?: string[]

The list of payment method details.

ShipmentDetail

PurchaseDate?: string

The date and time when the order was created.

ShipmentDetail

SellerDisplayName?: string

The seller’s friendly name registered in the marketplace.

ShipmentDetail

SellerId?: string

The seller identifier.

ShipmentDetail

ShipmentItems?: ShipmentItem[]

A list of shipment items.

ShipmentDetail

ShippingAddress?: Address

ShipmentDetail

WarehouseId?: string

The Amazon-defined identifier for the warehouse.

ShipmentDetail