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

ListInboundShipmentItemsByNextToken

Returns the next page of inbound shipment items using the NextToken parameter.

Description

The ListInboundShipmentItemsByNextToken operation returns the next page of inbound shipment items using the NextToken value that was returned by your previous request to either ListInboundShipmentItems or ListInboundShipmentItemsByNextToken. If NextToken is not returned, there are no more pages to return.

Availability

This operation is available in all marketplaces except Brazil.

Throttling

The ListInboundShipmentItems and ListInboundShipmentItemsByNextToken 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

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
NextToken A string token returned in the response of your previous request to either ListInboundShipmentItems or ListInboundShipmentItemsByNextToken. 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 ListInboundShipmentItemsByNextToken. If NextToken is not returned, there are no more inbound shipments to return.

Optional

Type: xs:string
ItemData Item information for an inbound shipment. Includes ShipmentId, SellerSKU, FulfillmentNetworkSKU, QuantityShipped, and QuantityReceived.

Type: InboundShipmentItem

Examples

Example query request

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

Show example code Hide example code

https://mws.amazonaws.com/FulfillmentInboundShipment/2010-10-01
?AWSAccessKeyId=AKIAEIAL5QODNGQCJLSA
&Action=ListInboundShipmentItemsByNextToken
&SellerId=A135KKEKWF1J56
&SignatureVersion=2
&Timestamp=2015-11-29T22%3A26%3A46Z
&Version=2010-10-01
&Signature=uVKj7aPg9n31AS2%2FOhVeWkGsLTHwEELnJ8AjD%2F9qbms%3D
&SignatureMethod=HmacSHA256
&NextToken=TOKEN

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0" encoding="UTF-8"?>
<ListInboundShipmentItemsByNextTokenResponse
  xmlns="http://mws.amazonaws.com/FulfillmentInboundShipment/2010-10-01/">
  <ListInboundShipmentItemsByNextTokenResult>
    <ItemData>
      <member>
        <QuantityShipped>2</QuantityShipped>
        <ShipmentId>FBA0000001</ShipmentId>
        <FulfillmentNetworkSKU>FNSKU1</FulfillmentNetworkSKU>
        <SellerSKU>SKU00001</SellerSKU>
        <QuantityReceived>0</QuantityReceived>
        <QuantityInCase>0</QuantityInCase>
        <PrepDetailsList>
          <PrepDetails>
            <PrepInstruction>Taping</PrepInstruction>
            <PrepOwner>AMAZON</PrepOwner> 
          </PrepDetails>
          <PrepDetails>
            <PrepInstruction>Polybagging</PrepInstruction>
            <PrepOwner>AMAZON</PrepOwner> 
          </PrepDetails>
        </PrepDetailsList>
      </member>
    </ItemData>
</ListInboundShipmentItemsByNextTokenResult>
<ResponseMetadata>
  <RequestId>9581f746-c8fb-42ca-ad20-42f8a5333a1b</RequestId>
</ResponseMetadata>
</ListInboundShipmentItemsByNextTokenResponse>

↑ Top