影音先锋男人资源站_国产婷婷综合丁香亚洲欧洲_白狐视频传媒污软件下载_趁女同学午休揉她的屁股

使用 XML管理亞馬遜商品教程3——商品價格輸入數據架構-ESG跨境

使用 XML管理亞馬遜商品教程3——商品價格輸入數據架構

亞馬遜觀察
亞馬遜觀察
2022-03-26
點贊icon 0
查看icon 1108

使用 XML管理亞馬遜商品教程3——商品價格輸入數據架構

商品價格制定 — 商品價格輸入數據架構


描述

商品價格上傳數據允許您設定當前商品價格和商品銷售價格(如果適用)。商品的銷售價格是可選的。如果使用此選項,還必須提供開始日期和結束日期。


詞典

元素描述
SKU用于識別單件商品。每件商品必須有一個 SKU,并且每個 SKU 必須是唯一的。
StandardPrice商品價格(非銷售價格)
MAP最低宣傳價格。經制造商同意才可使用。商品的標準價格和銷售價格(如果適用)必須高于 MAP 值。

注意: 使用 MAP(隱藏商品價格)會對銷售產生負面影響。

Sale

銷售日期和商品價格信息,分為以下部分:

StartDate

銷售開始日期

EndDate

銷售結束日期

SalePRICE

銷售價格



分類限制

MAP 功能不適用于以下分類:

  • 母嬰用品

  • 服裝和配飾

  • 個護健康

  • 家居與園藝(包括寵物)

  • 廚房用品

  • 珠寶首飾

  • 箱包和旅行用品

  • 辦公用品

  • 鞋靴、手提包和太陽鏡

  • 軟件和電腦/視頻游戲

  • 運動戶外


XSD

https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/Price.xsd

<?xml version="1.0"?> <!- Revision="$Revision: #3 $"   --> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"elementFormDefault="qualified">   <xsd:include schemaLocation="amzn-base.xsd" /> <xsd:element name="Price"> <xsd:complexType> <xsd:sequence>   <xsd:element ref="SKU" />   <xsd:element name="StandardPrice"type="OverrideCurrencyAmount" />   <xsd:element name="MAP"type="OverrideCurrencyAmount" minOccurs="0" />   <xsd:element name="DepositAmount"type="CurrencyAmountWithDefault" minOccurs="0" /> <xsd:element name="Sale" minOccurs="0"> <xsd:complexType> <xsd:sequence>   <xsd:element name="StartDate" type="xsd:dateTime"/>   <xsd:element name="EndDate" type="xsd:dateTime"/>   <xsd:element name="SalePrice"type="OverrideCurrencyAmount" />   </xsd:sequence>   </xsd:complexType>   </xsd:element>   <xsd:element name="Previous" type="DatedPrice"minOccurs="0" />   </xsd:sequence>   </xsd:complexType>   </xsd:element> <xsd:simpleType name="BaseCurrencyCodeWithDefault"> <xsd:restriction base="xsd:string">   <xsd:enumeration value="USD" />   <xsd:enumeration value="GBP" />   <xsd:enumeration value="EUR" />   <xsd:enumeration value="JPY" />   <xsd:enumeration value="CAD" />   <xsd:enumeration value="DEFAULT" />   </xsd:restriction>   </xsd:simpleType> <xsd:complexType name="CurrencyAmountWithDefault"> <xsd:simpleContent> <xsd:extension base="BaseCurrencyAmount">   <xsd:attribute name="currency"type="BaseCurrencyCodeWithDefault" use="required" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType> <xsd:complexType name="OverrideCurrencyAmount"> <xsd:simpleContent> <xsd:extension base="CurrencyAmountWithDefault">   <xsd:attribute name="zero" type="xsd:boolean"use="optional" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType>   </xsd:schema>


示例

<?xml version="1.0"encoding="utf-8" ?> <AmazonEnvelopexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="amzn-envelope.xsd"> <Header>   <DocumentVersion>1.01</DocumentVersion>  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>   </Header>   <MessageType>Price</MessageType> <Message>   <MessageID>1</MessageID> <Price>   <SKU>ASUSVNA1</SKU>   <StandardPricecurrency="USD">10.99</StandardPrice>   </Price>   </Message> <Message>   <MessageID>2</MessageID> <Price>   <SKU>ASUSVNA1669</SKU>   <StandardPricecurrency="USD">204.99</StandardPrice>   </Price>   </Message> </AmazonEnvelope>

Assign a Price - Price Feed Schema


Description

The price feed allows you to set the current price and sale price (when applicable) for an item. The sale price is optional. If used, the start and end date must also be provided.


Dictionary

ElementDescription
SKUUsed to identify an individual product. Each product must have a SKU, and each SKU must be unique.
StandardPricePrice of the item (non-sale price)
MAPMinimum Advertised Price. Use only if dictated by the manufacturer. Both the standard and sale price (if applicable) must be higher than the MAP value.

Note: Using MAP (hiding the price) has a negative impact on sales.

Sale

Sale date and price information, broken into the following components:

StartDate

The date the sale starts

EndDate

The last date of the sale

SalePrice

The sale price



Category limitations

MAP functionality is not available for the following categories:

  • Baby Products

  • Clothing & Accessories

  • Health & Personal Care

  • Home & Garden (including Pets)

  • Kitchen

  • Jewelry

  • Luggage & Travel Accessories

  • Office Products

  • Shoes, Handbags & Sunglasses

  • Software & Computer/Video Games

  • Sports & Outdoors


XSD

https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/Price.xsd

<?xml version="1.0"?> <!- Revision="$Revision: #3 $"   --> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"elementFormDefault="qualified">   <xsd:include schemaLocation="amzn-base.xsd" /> <xsd:element name="Price"> <xsd:complexType> <xsd:sequence>   <xsd:element ref="SKU" />   <xsd:element name="StandardPrice"type="OverrideCurrencyAmount" />   <xsd:element name="MAP"type="OverrideCurrencyAmount" minOccurs="0" />   <xsd:element name="DepositAmount"type="CurrencyAmountWithDefault" minOccurs="0" /> <xsd:element name="Sale" minOccurs="0"> <xsd:complexType> <xsd:sequence>   <xsd:element name="StartDate" type="xsd:dateTime"/>   <xsd:element name="EndDate" type="xsd:dateTime"/>   <xsd:element name="SalePrice"type="OverrideCurrencyAmount" />   </xsd:sequence>   </xsd:complexType>   </xsd:element>   <xsd:element name="Previous" type="DatedPrice"minOccurs="0" />   </xsd:sequence>   </xsd:complexType>   </xsd:element> <xsd:simpleType name="BaseCurrencyCodeWithDefault"> <xsd:restriction base="xsd:string">   <xsd:enumeration value="USD" />   <xsd:enumeration value="GBP" />   <xsd:enumeration value="EUR" />   <xsd:enumeration value="JPY" />   <xsd:enumeration value="CAD" />   <xsd:enumeration value="DEFAULT" />   </xsd:restriction>   </xsd:simpleType> <xsd:complexType name="CurrencyAmountWithDefault"> <xsd:simpleContent> <xsd:extension base="BaseCurrencyAmount">   <xsd:attribute name="currency"type="BaseCurrencyCodeWithDefault" use="required" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType> <xsd:complexType name="OverrideCurrencyAmount"> <xsd:simpleContent> <xsd:extension base="CurrencyAmountWithDefault">   <xsd:attribute name="zero" type="xsd:boolean"use="optional" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType>   </xsd:schema>


Example

<?xml version="1.0"encoding="utf-8" ?> <AmazonEnvelopexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="amzn-envelope.xsd"> <Header>   <DocumentVersion>1.01</DocumentVersion>  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>   </Header>   <MessageType>Price</MessageType> <Message>   <MessageID>1</MessageID> <Price>   <SKU>ASUSVNA1</SKU>   <StandardPricecurrency="USD">10.99</StandardPrice>   </Price>   </Message> <Message>   <MessageID>2</MessageID> <Price>   <SKU>ASUSVNA1669</SKU>   <StandardPricecurrency="USD">204.99</StandardPrice>   </Price>   </Message> </AmazonEnvelope>


點擊咨詢現在有哪些新興平臺值得關注 >>>


特別聲明:以上文章內容僅代表作者本人觀點,不代表ESG跨境電商觀點或立場。如有關于作品內容、版權或其它問題請于作品發表后的30日內與ESG跨境電商聯系。

全球最大電商平臺
查看更多
搜索 放大鏡
韓國平臺交流群
加入
韓國平臺交流群
掃碼進群
歐洲多平臺交流群
加入
歐洲多平臺交流群
掃碼進群
美國賣家交流群
加入
美國賣家交流群
掃碼進群
ESG跨境專屬福利分享群
加入
ESG跨境專屬福利分享群
掃碼進群
拉美電商交流群
加入
拉美電商交流群
掃碼進群
亞馬遜跨境增長交流群
加入
亞馬遜跨境增長交流群
掃碼進群
亞馬遜跨境增長交流群
加入
亞馬遜跨境增長交流群
掃碼進群
拉美電商交流群
加入
拉美電商交流群
掃碼進群
ESG獨家招商-PHH GROUP賣家交流群
加入
ESG獨家招商-PHH GROUP賣家交流群
掃碼進群
2025跨境電商營銷日歷
《2024年全球消費趨勢白皮書——美國篇》
《2024TikTok出海達人營銷白皮書》
《Coupang自注冊指南》
《eMAG知識百科》
《TikTok官方運營干貨合集》
《韓國節日營銷指南》
《開店大全-全球合集》
《TikTok綜合運營手冊》
《TikTok短視頻運營手冊》
通過ESG入駐平臺,您將解鎖
綠色通道,更高的入駐成功率
專業1v1客戶經理服務
運營實操指導
運營提效資源福利
平臺官方專屬優惠

立即登記,定期獲得更多資訊

訂閱
聯系顧問

平臺顧問

平臺顧問 平臺顧問

微信掃一掃
馬上聯系在線顧問

icon icon

小程序

微信小程序

ESG跨境小程序
手機入駐更便捷

icon icon

返回頂部