使用 XML管理亞馬遜商品教程3——商品價格輸入數(shù)據(jù)架構(gòu)-ESG跨境

使用 XML管理亞馬遜商品教程3——商品價格輸入數(shù)據(jù)架構(gòu)

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

使用 XML管理亞馬遜商品教程3——商品價格輸入數(shù)據(jù)架構(gòu)

商品價格制定 — 商品價格輸入數(shù)據(jù)架構(gòu)


描述

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


詞典

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

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

Sale

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

StartDate

銷售開始日期

EndDate

銷售結(jié)束日期

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>


點擊咨詢現(xiàn)在有哪些新興平臺值得關(guān)注 >>>


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

全球最大電商平臺
查看更多
搜索 放大鏡
韓國平臺交流群
加入
韓國平臺交流群
掃碼進群
歐洲多平臺交流群
加入
歐洲多平臺交流群
掃碼進群
美國賣家交流群
加入
美國賣家交流群
掃碼進群
ESG跨境專屬福利分享群
加入
ESG跨境專屬福利分享群
掃碼進群
拉美電商交流群
加入
拉美電商交流群
掃碼進群
亞馬遜跨境增長交流群
加入
亞馬遜跨境增長交流群
掃碼進群
亞馬遜跨境增長交流群
加入
亞馬遜跨境增長交流群
掃碼進群
拉美電商交流群
加入
拉美電商交流群
掃碼進群
ESG獨家招商-PHH GROUP賣家交流群
加入
ESG獨家招商-PHH GROUP賣家交流群
掃碼進群
《TikTok官方運營干貨合集》
《TikTok綜合運營手冊》
《TikTok短視頻運營手冊》
《TikTok直播運營手冊》
《TikTok全球趨勢報告》
《韓國節(jié)日營銷指南》
《開店大全-全球合集》
《開店大全-主流平臺篇》
《開店大全-東南亞篇》
《CD平臺自注冊指南》
通過ESG入駐平臺,您將解鎖
綠色通道,更高的入駐成功率
專業(yè)1v1客戶經(jīng)理服務
運營實操指導
運營提效資源福利
平臺官方專屬優(yōu)惠

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

訂閱
聯(lián)系顧問

平臺顧問

平臺顧問 平臺顧問

微信掃一掃
馬上聯(lián)系在線顧問

icon icon

小程序

微信小程序

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

icon icon

返回頂部

【免費領(lǐng)取】全球跨境電商運營干貨 關(guān)閉