卖家 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.
教程:获取卖家的账户信息(仅限欧盟)
了解如何检索卖家的账户信息。您检索的信息包括商城参与清单、企业信息和销售计划详情。这仅在欧盟地区可用。
先决条件
要完成本教程,必须完成以下先决条件:
- The selling partner must authorize you to call the Selling Partner API (SP-API) on their behalf. For details about how selling partners can authorize an application to call the SP-API on their behalf, refer to Authorizing Selling Partner API Applications.
- Your developer profile must include the Finance and Accounting role. To learn about roles, refer to Roles in the Selling Partner API.
- The app registration page for your application must include the Finance and Accounting role.
获取账户信息
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"
}
}
}
教程:让卖家参与市场
了解如何获取卖家可以在其中上架商品的亚马逊商城清单。您检索的信息包括商城信息、卖家在商城中的商店名称、卖家是否参与商城以及卖家是否暂停了商城的上架商品。
先决条件
要完成本教程,必须完成以下先决条件:
- The selling partner must authorize you to call the Selling Partner API (SP-API) on their behalf. For details about how selling partners can authorize an application to call the SP-API on their behalf, refer to Authorizing Selling Partner API Applications.
- Your developer profile must include the Finance and Accounting role. To learn about roles, refer to Roles in the Selling Partner API.
- The app registration page for your application must include the Finance and Accounting role.
- The marketplace identifier of the marketplace for which you want data. For a list of marketplace identifiers, refer to Marketplace IDs.
获得市场参与度
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
}
}
]
Updated about 2 months ago
此页面对您有帮助吗?