I’m trying to list items on amazon with the sp-api and feeds.
I’m currently using:
- POST_PRODUCT_IMAGE_DATA
- POST_PRODUCT_PRICING_DATA
- POST_PRODUCT_DATA
- POST_INVENTORY_AVAILABILITY_DATA
And I’m trying to complete an item on AmazonSellerCenter.
I registered all the required informations, expect one “List Price with Tax for Display” and I dont understand how to fill it.
I tried: “TaxStandardPrice”, “MAP”, “MSRPWithTax”, “BusinessPrice” and “StandardPrice” (but the last one is for the “Your Price” Input)
<MessageType>Price</MessageType>
<Message>
<MessageID>1</MessageID>
<Price>
<SKU>123456789</SKU>
<StandardPrice currency="EUR">199</StandardPrice>
<MAP currency="EUR">200</MAP>
<TaxStandardPrice>201</TaxStandardPrice>
</Price>
</Message>
Does someone know what I’m missing ?