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

ListAllFulfillmentOrdersByNextToken

Returns the next page of fulfillment orders using the NextToken parameter.

Description

The ListAllFulfillmentOrdersByNextToken operation returns the next page of fulfillment orders using the NextToken value that was returned by your previous request to either ListAllFulfillmentOrders or ListAllFulfillmentOrdersByNextToken. If NextToken is not returned, there are no more pages to return.

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
NextToken A string token returned in the response of your previous request to either ListAllFulfillmentOrders or ListAllFulfillmentOrdersByNextToken. Yes Type: xs:string

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=ListAllFulfillmentOrdersByNextToken
  &NextToken=H4sIAAAAAAAAAC2MwQqDMBBEfyXsPXU3ITUEEyjFQ6FWUNt7sbEIal
H7%2F3SVwjLLG3iTzeLjoe6n9xAv3ziWyysuIFoPCjGVqCWmDaZOWYckkRNB9B4MgZj4M
Y0euuewRhBxswhZkaQbUk5pZ%2BiA1nK1m%2Bu%2BayXxlmnwyCXffzdkXTiXt%2Fpe5F
WWdBtWeVE%2BTtedkjn8AF4nvJquAAAA

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<ListAllFulfillmentOrdersByNextTokenResponse
    xmlns="http://mws.amazonaws.com/FulfillmentOutboundShipment/2010-10-01/">
    <NextToken>H4sIAAAAAAAAAC2M0QqCQBBFf2WZ982ZXVeHxRUifMsEs96jVhIq0fX/ab
        VguMw5cG8xidFBGJanXHxY5Dg//Px7ibI0N0YTMacg7g4UYha1VNyRschWGxkTEcTggJBAf
        ByYiG8H/e0VPAi/1ggl5pJ0R8oqbQ3tkDmqrRq2YV6H0XSYRRnvP1wWfdlWdXP
        dH4ukX+nQnM6Xumo3TKbyC+hpQInCAAAA</NextToken>
    <ListAllFulfillmentOrdersByNextTokenResult>
        <FulfillmentOrders>
            <member>
                <ShippingSpeedCategory>Standard</ShippingSpeedCategory>
                <StatusUpdatedDateTime>2011-01-02T07:49:35Z </StatusUpdatedDateTime>
                <SellerFulfillmentOrderId>SampleOrderId </SellerFulfillmentOrderId>
                <DestinationAddress>
                    <PostalCode>98101</PostalCode>
                    <PhoneNumber>123-456-7890</PhoneNumber>
                    <Name>Fred Jones</Name>
                    <CountryCode>US</CountryCode>
                    <Line1>Amazon.com</Line1>
                    <StateOrProvinceCode>WA</StateOrProvinceCode>
                    <City>Seattle</City>
                </DestinationAddress>
                <DisplayableOrderDateTime>2011-01-08T08:00:00Z </DisplayableOrderDateTime>
                <FulfillmentPolicy>FillAllAvailable</FulfillmentPolicy>
                <ReceivedDateTime>2011-01-08T17:23:20Z</ReceivedDateTime>
                <DisplayableOrderId>MinimalOrder</DisplayableOrderId>
                <DisplayableOrderComment>Sample order comment </DisplayableOrderComment>
                <FulfillmentOrderStatus>PROCESSING</FulfillmentOrderStatus>
            </member>
            <member>
                <ShippingSpeedCategory>Standard</ShippingSpeedCategory>
                <StatusUpdatedDateTime>2011-02-20T19:00:07Z </StatusUpdatedDateTime>
                <SellerFulfillmentOrderId>SampleOrderId </SellerFulfillmentOrderId>
                <DestinationAddress>
                    <PostalCode>98101</PostalCode>
                    <PhoneNumber>098-765-4321</PhoneNumber>
                    <Name>Mary Johnson</Name>
                    <CountryCode>US</CountryCode>
                    <Line1>456 7th Ave</Line1>
                    <StateOrProvinceCode>WA</StateOrProvinceCode>
                    <City>Seattle</City>
                </DestinationAddress>
                <DisplayableOrderDateTime>2011-02-25T07:00:00Z </DisplayableOrderDateTime>
                <FulfillmentPolicy>FillAllAvailable</FulfillmentPolicy>
                <ReceivedDateTime>2011-02-25T18:47:49Z</ReceivedDateTime>
                <DisplayableOrderId>SampleOrderID</DisplayableOrderId>
                <DisplayableOrderComment>Sample order comment. </DisplayableOrderComment>
                <FulfillmentOrderStatus>PROCESSING</FulfillmentOrderStatus>
            </member>
        </FulfillmentOrders>
    </ListAllFulfillmentOrdersByNextTokenResult>
    <ResponseMetadata>
        <RequestId>f14964dd-8e79-11df-929f-87c80302f8f6</RequestId>
    </ResponseMetadata>
</ListAllFulfillmentOrdersByNextTokenResponse>

↑ Top