Amazon SP-API Feed API POST_PRODUCT_PRICING_DATA 无法更新价格

发布于 2025-01-18 11:44:40 字数 874 浏览 1 评论 0原文

我尝试使用 Amazon Feeds API 上传 Feed,并成功更新数量。

但价格呢?它失败了。

这是我上传的xml:

       <?xml version="1.0" encoding="UTF-8"?>
          <AmazonEnvelope>
            <Header>
              <DocumentVersion>1.02</DocumentVersion>
              <MerchantIdentifier>XXXXXXXXXXXX</MerchantIdentifier>
            </Header>
            <MessageType>Price</MessageType>
            <Message>
              <MessageID>1</MessageID>
              <Price>
                <SKU>XXXXXXXXXXX</SKU>
                <StandardPrice currency="USD">100.00</StandardPrice>
              </Price>
            </Message>
          </AmazonEnvelope>

等待后,价格保持不变。

我如何更新价格?上面的 XML 是否不正确,无法更改价格?

您能给我展示一个通过 Feed API 更新价格的示例吗?

I tried using the Amazon Feeds API to upload a feed and was successful in updating the quantity.

But what about the price? It failed.

Here is the xml I uploaded:

       <?xml version="1.0" encoding="UTF-8"?>
          <AmazonEnvelope>
            <Header>
              <DocumentVersion>1.02</DocumentVersion>
              <MerchantIdentifier>XXXXXXXXXXXX</MerchantIdentifier>
            </Header>
            <MessageType>Price</MessageType>
            <Message>
              <MessageID>1</MessageID>
              <Price>
                <SKU>XXXXXXXXXXX</SKU>
                <StandardPrice currency="USD">100.00</StandardPrice>
              </Price>
            </Message>
          </AmazonEnvelope>

After waiting, the price remained the same.

How can I update the price? Is the above XML not correct to make the price change?

Please can you show me an example that will update the price via the feed API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2025-01-25 11:44:40

Message节点需要指定操作类型。

 <Message> 
      <MessageID>1</MessageID>
      <OperationType>Update</OperationType>
      <Price>                 
            <SKU>1234567</SKU>
            <StandardPrice currency="USD">100.00</StandardPrice>
       </Price>
     </Message>

  Other possible values are Delete and PartialUpdate
                             

The Message node needs to specify operation type.

 <Message> 
      <MessageID>1</MessageID>
      <OperationType>Update</OperationType>
      <Price>                 
            <SKU>1234567</SKU>
            <StandardPrice currency="USD">100.00</StandardPrice>
       </Price>
     </Message>

  Other possible values are Delete and PartialUpdate
                             
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文