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

ListAllFulfillmentOrders

Returns a list of fulfillment orders fulfilled after (or at) a specified date.

Description

The ListAllFulfillmentOrders operation returns a list of fulfillment orders that were updated after (or at) a specified date. This operation returns general fulfillment order information but does not return item-level or shipment-level information.

The ListAllFulfillmentOrders operation returns a maximum of 50 fulfillment orders. If there are additional fulfillment orders to return, NextToken is returned in the response. To retrieve all of the fulfillment orders, pass the value of NextToken to the ListInboundShipmentItemsByNextToken operation and repeat until NextToken is no longer returned.

Availability

This operation is available in all marketplaces except Brazil.

Throttling

The ListAllFulfillmentOrders and ListAllFulfillmentOrdersByNextToken operations together share a maximum request quota of 30 and a restore rate of two requests every second. 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

Name Description Required Values
QueryStartDateTime A date used for selecting fulfillment orders that were last updated after (or at) a specified time. An update is defined as any change in fulfillment order status, including the creation of a new fulfillment order. No Default: Now minus 36 hours

In ISO 8601 date time format.

Type: xs:dateTime

Response elements

Name Description
NextToken A generated string used to pass information to your next request. If NextToken is returned, pass the value of NextToken to ListAllFulfillmentOrdersByNextToken. If NextToken is not returned, there are no more fulfillment orders to return.

Optional

Type: xs:string
FulfillmentOrders General fulfillment order information, including order status.

Type: List of FulfillmentOrder

Examples

Example query request

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

Show example code Hide example code

http://mws.amazonaws.com/FulfillmentOutboundShipment/2010-10-01/
  ?Action=ListAllFulfillmentOrders
  &Version=2010-10-01
  &AWSAccessKeyId=AKIAJGUEXAMPLEE2NVUA
  &MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
  &SignatureVersion=2
  &SignatureMethod=HmacSHA256
  &Signature=ZRA9DR5rveSuz%2F1D18AHvoipg2BAev8yblPQ1BbEbfU%3D
  &Timestamp=2010-10-01T02:40:36Z
  &SellerId=A2NKEXAMPLEF53
  &QueryStartDateTime=2008-11-05T06%3A00%3A00Z

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<ListAllFulfillmentOrdersResponse
    xmlns="http://mws.amazonaws.com/FulfillmentOutboundShipment/2010-10-01/">
    <ListAllFulfillmentOrdersResult>
        <NextToken>H4sIAAAAAAAAAC2MwQqDMBBEfyXsPXU3ITUEEyjFQ6FWUNt7sbEI
            alH7/3SVwjLLG3iTzeLjoe6n9xAv3ziWyysuIFoPCjGVqCWmDaZOWYckkRNB9B4MgZj
            4MY0euuewRhBxswhZkaQbUk5pZ+iA1nK1m+u+ayXxlmnwyCXffzdkXTiXt/pe5FWWdB
            tWeVE+Ttedkjn8AF4nvJquAAAA</NextToken>
        <FulfillmentOrders>
            <member>
                <ShippingSpeedCategory>Standard</ShippingSpeedCategory>
                <StatusUpdatedDateTime>2011-01-28T23:48:48Z </StatusUpdatedDateTime>
                <NotificationEmailList>
                    <member>o8c2EXAMPLsfr7o@marketplace.amazon.com</member>
                </NotificationEmailList>
                <SellerFulfillmentOrderId>extern_id_1154539615776 </SellerFulfillmentOrderId>
                <DestinationAddress>
                    <PostalCode>98101</PostalCode>
                    <PhoneNumber>321-098-7654</PhoneNumber>
                    <Name>Jane Adams</Name>
                    <CountryCode>US</CountryCode>
                    <Line1>123 Oak St.</Line1>
                    <StateOrProvinceCode>WA</StateOrProvinceCode>
                    <City>Seattle</City>
                    <Line2>Apt. 321</Line2>
                </DestinationAddress>
                <DisplayableOrderDateTime>2011-02-05T17:26:56Z </DisplayableOrderDateTime>
                <FulfillmentPolicy>FillOrKill</FulfillmentPolicy>
                <ReceivedDateTime>2011-02-06T17:26:56Z</ReceivedDateTime>
                <DisplayableOrderId>test_displayable_id</DisplayableOrderId>
                <DisplayableOrderComment>Sample comment text. </DisplayableOrderComment>
                <FulfillmentOrderStatus>PROCESSING</FulfillmentOrderStatus>
            </member>
            <member>
                <ShippingSpeedCategory>Standard</ShippingSpeedCategory>
                <StatusUpdatedDateTime>2011-03-05T18:48:53Z </StatusUpdatedDateTime>
                <SellerFulfillmentOrderId>external-order-ebaytime1154557376014 </SellerFulfillmentOrderId>
                <DestinationAddress>
                    <PostalCode>98104</PostalCode>
                    <PhoneNumber>123-123-4567</PhoneNumber>
                    <Name>George Jones</Name>
                    <CountryCode>US</CountryCode>
                    <Line1>2345 5th Ave</Line1>
                    <StateOrProvinceCode>WA</StateOrProvinceCode>
                    <City>Seattle</City>
                </DestinationAddress>
                <DisplayableOrderDateTime>2011-03-11T18:48:52Z </DisplayableOrderDateTime>
                <FulfillmentPolicy>FillAllAvailable</FulfillmentPolicy>
                <ReceivedDateTime>2011-03-03T18:48:53Z</ReceivedDateTime>
                <DisplayableOrderId>test-order-test-1159210132812 </DisplayableOrderId>
                <DisplayableOrderComment>Sample order comment. </DisplayableOrderComment>
                <FulfillmentOrderStatus>PLANNING</FulfillmentOrderStatus>
            </member>
        </FulfillmentOrders>
    </ListAllFulfillmentOrdersResult>
    <ResponseMetadata>
        <RequestId>7e9c8d48-8e79-11df-929f-87c80302f8f6</RequestId>
    </ResponseMetadata>
</ListAllFulfillmentOrdersResponse>

↑ Top