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

ListMarketplaceParticipationsByNextToken

Returns the next page of marketplaces and participations using the NextToken.

Description

The ListMarketplaceParticipationsByNextToken operation returns the next page of marketplaces and participations using the NextToken value that was returned by your previous request to either ListMarketplaceParticipations or ListMarketplaceParticipationsByNextToken. If NextToken is not returned, there are no more pages to return.

Availability

This operation is available in all marketplaces.

Throttling

The ListMarketplaceParticipations and ListMarketplaceParticipationsByNextToken operations together share a maximum request quota of 15 and a restore rate of one request per minute. 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 ListMarketplaceParticipations or ListMarketplaceParticipationsByNextToken. Yes Token string returned from the previous call.

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 ListMarketplaceParticipationsByNextToken. If NextToken is not returned, there are no more marketplaces and participations to return.

Optional

Type: xs:string

ListParticipations Detailed information that is specific to a seller in a Marketplace.

Type: List of Participation

ListMarketplaces Detailed information about an Amazon market where a seller can list items for sale and customers can view and purchase items.

Type: List of Marketplace

Examples

Example query request

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

Show example code Hide example code

POST /Sellers/2011-07-01 HTTP/1.1
Content-Type: x-www-form-urlencoded
Host: mws.amazonservices.com
User-Agent: <Your User Agent Header>

AWSAccessKeyId=AKIAEIAL5QODNGQCJLSA
&Action=ListMarketplaceParticipationsByNextToken
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&NextToken=RH84wbwjhzC4GHg%3D%3D
&SellerId=A135KKEKWF1J56
&SignatureMethod=HmacSHA256
&SignatureVersion=2
&Timestamp=2011-07-12T23%3A07%3A53Z
&Version=2011-07-01
&Signature=iaCAz1%2BmG3B2vBTSufE5jg2h%2BoJYBon3gFbALwmuHzI%3D

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<ListMarketplaceParticipationsByNextTokenResponse
    xmlns="https://mws.amazonservices.com/Sellers/2011-07-01">
    <ListMarketplaceParticipationsByNextTokenResult>
        <NextToken>MRgZW55IGNhcm5hbCBwbGVhc3VyZS6=</NextToken>
        <ListParticipations>
            <Participation>
                <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
                <SellerId>A135KKEKWF1JAI6</SellerId>
                <HasSellerSuspendedListings>No</HasSellerSuspendedListings>
            </Participation>
        </ListParticipations>
        <ListMarketplaces>
            <Marketplace>
                <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
                <Name>Amazon.com</Name>
                <DefaultCountryCode>US</DefaultCountryCode>
                <DefaultCurrencyCode>USD</DefaultCurrencyCode>
                <DefaultLanguageCode>en_US</DefaultLanguageCode>
                <DomainName>www.amazon.com</DomainName>
            </Marketplace>
        </ListMarketplaces>
    </ListMarketplaceParticipationsByNextTokenResult>
    <ResponseMetadata>
        <RequestId>efeab958-74e2-45d4-9018-2323084413b5</RequestId>
    </ResponseMetadata>
</ListMarketplaceParticipationsByNextTokenResponse>

↑ Top