ListInboundShipmentItemsByNextToken

Description

The ListInboundShipmentItemsByNextToken operation requests the next set of inbound shipment items and returns the NextToken, which you can use to iterate through the remaining inbound shipment items. Please check the value of HasNext to determine whether any items were not returned. You must first call ListInboundShipmentItems to get a NextToken.

Request Parameters

NameDescriptionRequired

NextToken

The NextToken response element returned in ListInboundShipmentItems, or a previous ListInboundShipmentItemsByNextToken request.

Type: String

Yes

Response Elements

NameDescription

HasNext

Boolean to indicate whether there are more items returned. True means there are more items to retrieve using the next token version of this operation. False means there are no more items to retrieve.

Type: Boolean

NextToken

Text string used to support pagination. Use the NextToken to perform an additional operation if the HasNext parameter is True.

Type: String

InboundShipmentItem

Information about an item in a shipment.

Type: InboundShipmentItem

Examples

Example SOAP Request

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Header>
        <aws:AWSAccessKeyId
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >1QZHP81N5R44N89PWYR2</aws:AWSAccessKeyId>
        <aws:Signature
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >TNUGjDJrVxtjeScU767mL446oS8=</aws:Signature>
        <aws:Timestamp
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >2009-02-21T02:40:27Z</aws:Timestamp>
    </soapenv:Header>
    <soapenv:Body>
        <ListInboundShipmentItemsByNextToken
            xmlns="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <NextToken>QTIzNEU5MVZQUEtKVFl8U1NGSTlBU09aWkpHVVB8MXxYMDAwMDJHQkVE</NextToken>
        </ListInboundShipmentItemsByNextToken>
    </soapenv:Body>
</soapenv:Envelope>

Example Query Request

https://fba-inbound.amazonaws.com/
?Action=ListInboundShipmentsItemsByNextToken
&Version=2007-05-10
&AWSAccessKeyId=1QZHP81N5R44N89PWYR2
&Signature=TNUGjDJrVxtjeScU767mL446oS8=
&Timestamp=2009-02-21T02:40:27Z
&NextToken=QTIzNEU5MVZQUEtKVFl8U1NGSTlBU09aWkpHVVB8MXxYMDAwMDJHQkVE

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns1:ListInboundShipmentItemsByNextTokenResponse
            xmlns:ns1="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <ns1:ListInboundShipmentItemsByNextTokenResult>
                <ns1:NextToken/>
                <ns1:HasNext>false</ns1:HasNext>
                <ns1:ShipmentItem>
                    <ns1:QuantityShipped>5</ns1:QuantityShipped>
                    <ns1:QuantityReceived>0</ns1:QuantityReceived>
                    <ns1:FulfillmentNetworkSKU>X00002HLRT</ns1:FulfillmentNetworkSKU>
                    <ns1:MerchantSKU>MSKUNikonD70</ns1:MerchantSKU>
                </ns1:ShipmentItem>
            </ns1:ListInboundShipmentItemsByNextTokenResult>
            <ns1:ResponseMetadata>
                <ns1:RequestId>48754b11-ad3b-4b90-8d08-b0a4c7257988</ns1:RequestId>
            </ns1:ResponseMetadata>
        </ns1:ListInboundShipmentItemsByNextTokenResponse>
    </soapenv:Body>
</soapenv:Envelope>

Related Operations

ListInboundShipmentItems