如何通过 mws 从亚马逊库存中删除产品 api

How to delete product from inventory on Amazon via mws api

我正在使用亚马逊 MWS 的客户端库来检索有竞争力的价格信息等。但我希望能够删除产品,或者通过 api 将它们从我的库存中移除。我无法在文档中或通过 google 找到如何执行此操作。

在此处未提及 http://docs.developer.amazonservices.com/en_US/dev_guide/index.html 如何删除产品列表。

我确实找到了这个 SO post Amazon api not deleting my products from inventory 但它似乎过时了,我在

的文档中找不到相应的部分
    <OperationType>Delete</OperationType>

感谢任何线索。谢谢,迈克。

您需要使用供稿 API 并提交删除请求。这就是两个 SKU 的正文的样子。

<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
  <Header>
    <DocumentVersion>1.01</DocumentVersion>
    <MerchantIdentifier>YOUR-MERCHANT-IDENTIFIER-GOES-HERE</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Delete</OperationType>
    <Product>
      <SKU>YOUR-FIRST-SKU-GOES-HERE</SKU>
    </Product>
  </Message>
  <Message>
    <MessageID>2</MessageID>
    <OperationType>Delete</OperationType>
    <Product>
      <SKU>YOUR-SECOND-SKU-GOES-HERE</SKU>
    </Product>
  </Message>
</AmazonEnvelope>