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

ListInventorySupplyByNextToken

Returns the next page of information about the availability of a seller's inventory using the NextToken parameter.

Description

The ListInventorySupplyByNextToken operation returns the next page of information about the availability of a seller's inventory using the NextToken value that was returned by your previous request to either ListInventorySupply or ListInventorySupplyByNextToken. If NextToken is not returned, there are no more pages to return.

Availability

This operation is available in all marketplaces except Brazil.

Throttling

The ListInventorySupply and ListInventorySupplyByNextToken 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 ListInventorySupply or ListInventorySupplyByNextToken. 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 ListInventorySupplyByNextToken. If NextToken is not returned, there is no more inventory availability information to return.

Optional

Type: xs:string
InventorySupplyList A list of items that are or soon will be available for fulfillment by Amazon's fulfillment network. Each item is either currently in the fulfillment network or is in an inbound shipment to an Amazon fulfillment center. SKU, ASIN, condition, quantity, and availability information is included with each item.

Type: List of InventorySupply

Examples

Example query request

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

Show example code Hide example code

http://mws.amazonaws.com/FulfillmentInventory/2010-10-01/
  ?Action=ListInventorySupplyByNextToken
  &Version=2010-10-01
  &AWSAccessKeyId=1QZHP81N5R44N89PFAKE
  &MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
  &SignatureVersion=2
  &SignatureMethod=HmacSHA256
  &Signature=VY6sqvdk01VEG0V+h4oj3FBFAKE=
  &Timestamp=2010-10-01T02:40:36Z
  &SellerId=1234567890
  &NextToken=2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<ListInventorySupplyByNextTokenResponse xmlns="http://mws.amazonaws.com/FulfillmentInventory/2010-10-01/">
    <ListInventorySupplyByNextTokenResult>
        <NextToken>2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=</NextToken>
        <InventorySupplyList>
            <member>
                <SellerSKU>SampleSKU5</SellerSKU>
                <ASIN>B00008UI0R</ASIN>
                <TotalSupplyQuantity>0</TotalSupplyQuantity>
                <FNSKU>B00008UI0R</FNSKU>
                <Condition/>
                <SupplyDetail/>
                <InStockSupplyQuantity>0</InStockSupplyQuantity>
            </member>
            <member>
                <SellerSKU>SampleSKU6</SellerSKU>
                <ASIN>B00000K3CQ</ASIN>
                <TotalSupplyQuantity>5259</TotalSupplyQuantity>
                <FNSKU>X0000000FM</FNSKU>
                <Condition>NewItem</Condition>
                <SupplyDetail/>
                <InStockSupplyQuantity>5259</InStockSupplyQuantity>
                <EarliestAvailability>
                    <TimepointType>Immediately</TimepointType>
                </EarliestAvailability>
            </member>
        </InventorySupplyList>
    </ListInventorySupplyByNextTokenResult>
    <ResponseMetadata>
        <RequestId>b3a020ac-8e5e-11df-9acb-230ae7a8b736</RequestId>
    </ResponseMetadata>
</ListInventorySupplyByNextTokenResponse>

↑ Top