Amazon Services
Amazon Marketplace Web Service (Amazon MWS) Documentation

Deprecation Notice:

Amazon Marketplace Web Service (MWS) will no longer be available after March 31, 2024. All MWS developers must migrate to Selling Partner API (SP-API) to avoid service disruptions. Refer to the Migration Hub for more information.

Amazon MWS Documentation

GetFBAOutboundShipmentDetail

Description

The GetFBAOutboundShipmentDetail operation returns the information required to generate an invoice for the shipment of a Fulfillment by Amazon order.

Availability

This operation is available only in the Brazil marketplace.

Throttling

Maximum request quota Restore rate
25 requests 340 requests every 5 minutes
For definitions of throttling terminology and for a complete explanation of throttling, see Throttling: Limits to how often you can submit requests in the Amazon MWS Developer Guide.

Request parameters

For more information about the request parameters that are required for all Amazon MWS operations, see Required request parameters in the Amazon MWS Developer Guide.

Name Description Required Values
MarketplaceId An Amazon marketplace identifier. Yes Type: xs:string
AmazonShipmentId An Amazon-defined shipment identifier. Get this value from the FBAOutboundShipmentStatus notification. For information about subscribing to notifications, see What you should know about the Amazon MWS Subscriptions API section. Yes Type: xs:string

Response elements

Name Description
ShipmentDetail The information required by a seller to generate a shipment invoice.

Type: ShipmentDetail

Examples

Example query request

For information about standard request requirements, see Required request parameters.

Show example code Hide example code

https://mws.amazonservices.com/ShipmentInvoicing/2018-09-01
  ?AWSAccessKeyId=0PB842EXAMPLE7N4ZTR2
  &Action=GetFBAOutboundShipmentDetail
  &AmazonShipmentId=DrLqQwqvb
  &MarketplaceId=A2Q3Y263D00KWC
  &MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
  &SellerId=A2986ZQ066CH2F
  &Signature=ZQLpf8vEXAMPLE0iC265pf18n0%3D
  &SignatureVersion=2
  &SignatureMethod=HmacSHA256
  &Version=2018-09-01

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<GetFBAOutboundShipmentDetailResponse
    xmlns="http://mws.amazonservices.com/schema/ShipmentInvoicing/2018-09-01">
    <GetFBAOutboundShipmentDetailResult>
        <ShipmentDetail>
            <PurchaseDate>2018-04-16T14:44:38Z</PurchaseDate>
            <WarehouseId>XXXX</WarehouseId>
            <AmazonOrderId>701-0000000-0000000</AmazonOrderId>
            <AmazonShipmentId>DrLqQwqvb</AmazonShipmentId>
            <BuyerTaxInfo>
                <TaxClassifications>
                    <TaxClassification>
                        <Name>CPF</Name>
                        <Value>99999999999</Value>
                    </TaxClassification>
                </TaxClassifications>
            </BuyerTaxInfo>
            <PaymentMethodDetails>
                <PaymentMethodDetail>CreditCard</PaymentMethodDetail>
            </PaymentMethodDetails>
            <BuyerCounty>Centro</BuyerCounty>
            <BuyerName>Fulano da Silva</BuyerName>
            <MarketplaceId>A2Q3Y263D00KWC</MarketplaceId>
            <ShippingAddress>
                <City>SAO PAULO</City>
                <PostalCode>00000-000</PostalCode>
                <StateOrRegion>SP</StateOrRegion>
                <Phone>11912345678</Phone>
                <CountryCode>BR</CountryCode>
                <Name>Beltrano da Silva</Name>
                <AddressLine1>Rua da Consolação, 700</AddressLine1>
                <AddressLine2>Apto 32</AddressLine2>
            </ShippingAddress>
            <ShipmentItems>
                <ShipmentItem>
                    <QuantityOrdered>2</QuantityOrdered>
                    <Title>iPhone X Apple Cinza Espacial, 64 GB e Câmera 12 MP</Title>
                    <PromotionDiscount>
                        <CurrencyCode>BRL</CurrencyCode>
                        <Amount>0.00</Amount>
                    </PromotionDiscount>
                    <ASIN>B078HVJB69</ASIN>
                    <SellerSKU>XY-1A0O-B1CD</SellerSKU>
                    <OrderItemId>19441439621890</OrderItemId>
                    <ShippingPrice>
                        <CurrencyCode>BRL</CurrencyCode>
                        <Amount>30.00</Amount>
                    </ShippingPrice>
                    <GiftWrapPrice>
                        <CurrencyCode>BRL</CurrencyCode>
                        <Amount>0.00</Amount>
                    </GiftWrapPrice>
                    <ItemPrice>
                        <CurrencyCode>BRL</CurrencyCode>
                        <Amount>5099.99</Amount>
                    </ItemPrice>
                    <ShippingDiscount>
                        <CurrencyCode>BRL</CurrencyCode>
                        <Amount>0.00</Amount>
                    </ShippingDiscount>
                    <SerialNumbers>
                        <SerialNumber>1234567890</SerialNumber>
                        <SerialNumber>1234567687</SerialNumber>
                    </SerialNumbers>
                </ShipmentItem>
            </ShipmentItems>
        </ShipmentDetail>
    </GetFBAOutboundShipmentDetailResult>
    <ResponseMetadata>
        <RequestId>88faca76-b600-46d2-b53c-0c8c4533e43a</RequestId>
    </ResponseMetadata>
</GetFBAOutboundShipmentDetailResponse>

↑ Top