gpt4 book ai didi

stock - 如何使用 Etsy 的 updateInventory() 调用来更新列表的库存/价格

转载 作者:行者123 更新时间:2023-12-03 18:11:43 25 4
gpt4 key购买 nike

一旦使用listing->createListing() 最初创建列表后,如何更新列表的价格/库存对我来说根本不清楚。

为了更新股票/价格,Etsy 的文档说调用listing->updateInventory()。然而,这个调用需要一个叫做 products 的东西以及几个属性(price_on_property、quantity_on_property 和 sku_on_property):

  • Listing_id
  • 产品*
  • price_on_property
  • 数量_on_property
  • sku_on_property

  • 在哪里:
  • products在他们的文档中进一步定义为 property_values 的组合和 offerings我对此一无所知。
  • list_id 最初是从对 createListing() 的调用中返回的。

  • Etsy 关于 price_on_property、stock_on_property 和 sku_on_property 的脚注增加了困惑:

    price_on_property is an array of the property_ids of the properties which price depends on (if any).

    quantity_on_property is an array of the property_ids of the properties which quantity depends on (if any).

    sku_on_property is an array of the property_ids of the properties which sku depends on (if any).

    The update will fail if the supplied values for product sku and offering quantity and price are incompatible with the supplied values of the "on_property_*" fields.

    When supplying a price, supply a float equivalent to amount divided by divisor as specified in the Money resource.

    The products parameter should be a JSON array of products, even if you only send a single product. All field names in the JSON blob should be lowercase.



    取自 https://www.etsy.com/developers/documentation/reference/listinginventory#method_updateinventory

    鉴于在 Etsy 上添加待售商品的起点只是调用 createListing() 并提供我希望出售的商品的详细信息(包括库存数量和价格),我不明白如何调用 updateInventory() 来更新这个项目的库存和/或价格,所以任何人都可以就此事提供一些澄清(是的,我已经联系了 Etsy 开发人员支持,但他们可能需要一段时间才能回复)。

    最佳答案

    在 python 中——我假设你有来自 github 的 etsy_api 模块。

    Etsy 产品列表具有以下结构:

    ListingProduct = {
    "price_on_property": [
    property_ids
    ],
    "products": [
    LIST OF PRODUCT VARIATIONS FOR THIS LIST. IF YOU HAVE NO VARIATIONS
    THEN THIS LIST WILL HAVE ONLY 1 PRODUCT.

    ],
    "quantity_on_property": [],
    "sku_on_property": []

    }

    要更新价格,您需要发回这个 ListingProduct 模型,但要进行您想要的更改。笔记
  • 如果您有变体,则需要 price_on_property。
  • sku_on_property 是可选的,如果您有不同的 sku
    变化。
  • 如果您有不同的数量,则 quantity_on_property 是可选的
    变化。

  • 我发现最简单的方法是执行以下操作:

    获取要更改价格的产品的 listing_id。
    调用库存 URI 以获取此列表。我这样做是为了避免构建ListingProduct['products']。它发生了太多事情。
     listing_id = 'the product's listing_id'
    ListingProduct = etsy_api.getInventory(listing_id=listing_id)

    ListingProduct['products'] 是此列表的产品列表。此列表的大小等于您拥有的变体数量。
    以 ListingProduct['products'] 为例,每个变化都会改变价格。

    如果你看一下 ListingProduct['products'],你会看到需要做的改变是,
    ListingProducts['products'][0]['offerings'][0]['price'] = NewPrice

    如果列表有 2 变化,然后也改变价格
    ListingProducts['products'][1]['offerings'][0]['price'] = OtherNewPrice

    完成此操作后,请使用数据进行调用。
    data = {
    'listing_id': listing_id
    'products': json.dumps(ListingProduct['products'])
    'price_on_property': 200 #If you have variation
    }

    etsy_api.updateInventory(**数据)

    关于stock - 如何使用 Etsy 的 updateInventory() 调用来更新列表的库存/价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44331613/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com