Amazon Services China
亚马逊商城网络服务(亚马逊 MWS)文档

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.

亚马逊 MWS 文档

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.

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 限制:针对提交请求频率的限制 in the 亚马逊MWS开发者指南.

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.

类型: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

类型: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

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

Example response

<?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>