主页文档代码示例API 参考公告模型发行说明常见问题GitHub视频
开发者中心API 状态支持
文档
开发者中心API 状态支持

卖家 API v1 用例指南

检索卖家账户和商城信息。

API 版本:V1

什么是卖家 API?

The Selling Partner API for Sellers (Sellers API) provides information about seller accounts and marketplaces. The returned information includes:

  • 卖家可以在其中发布商品的商城
  • 商城的默认语言和货币
  • 卖家是否已暂停上架商品
  • 卖家的商业信息

For details about the operations, data types, and schemas of the Sellers API, refer to Sellers API v1 Reference.

教程:获取卖家的账户信息(仅限欧盟)

了解如何检索卖家的账户信息。您检索的信息包括商城参与清单、企业信息和销售计划详情。这仅在欧盟地区可用。

先决条件

要完成本教程,必须完成以下先决条件:

获取账户信息

Call the getAccount operation.

请求参数

没有。

请求示例

GET /sellers/v1/account

响应属性

成功的响应包括以下属性:

名称描述Schema
business有关卖家业务的信息。视卖家而定 businessType,你可以省略某些字段。Business
businessType注册卖家账户的企业类型。enum (BusinessType)
marketplaceParticipationList市场参与清单。< MarketplaceParticipationList> array
primaryContact有关卖家主要联系人的信息。PrimaryContact
sellingPlan销售计划详情。enum (SellingPlan)

响应示例

{ "businessType": "PRIVATE_LIMITED", "marketplaceParticipationList": [ { "marketplace": { "id": "ATVPDKIKX0DER", "name": "United States", "countryCode": "US", "domainName": "www.amazon.com" }, "storeName": "BestSellerStore", "participation": { "isParticipating": true, "hasSuspendedListings": false } } ], "sellingPlan": "PROFESSIONAL", "business": { "name": "BestSeller Inc.", "nonLatinName": "ベストセラー株式会社", "registeredBusinessAddress": { "addressLine1": "123 Main St", "addressLine2": "Suite 500", "city": "Seattle", "stateOrProvinceCode": "WA", "postalCode": "98101", "countryCode": "US" }, "companyRegistrationNumber": "123456789", "companyTaxIdentificationNumber": "987654321" }, "primaryContact": { "name": "John Doe", "nonLatinName": "ジョン・ドゥ", "address": { "addressLine1": "456 Oak St", "addressLine2": "Apt 12", "city": "Seattle", "stateOrProvinceCode": "WA", "postalCode": "98102", "countryCode": "US" } } }

教程:让卖家参与市场

了解如何获取卖家可以在其中上架商品的亚马逊商城清单。您检索的信息包括商城信息、卖家在商城中的商店名称、卖家是否参与商城以及卖家是否暂停了商城的上架商品。

先决条件

要完成本教程,必须完成以下先决条件:

获得市场参与度

Call the getMarketplaceParticipations operation.

请求参数

没有。

请求示例

GET /sellers/v1/marketplaceParticipations

响应

成功的响应包括以下元素:

名称描述Schema
marketplaceParticipationList亚马逊商城列表,卖家可以在其中列出商品,买家可以查看和购买商品。< MarketplaceParticipationList> array

响应示例

[ { "marketplace": { "id": "ATVPDKIKX0DER", "name": "Amazon.com", "countryCode": "US", "defaultCurrencyCode": "USD", "defaultLanguageCode": "en_US", "domainName": "www.amazon.com" }, "storeName": "BestSellerStore", "participation": { "isParticipating": true, "hasSuspendedListings": false } } ]

此页面对您有帮助吗?