限制Shopify产品/更新webhook的变体字段

时间:2017-01-28 01:02:31

标签: python shopify webhooks

我如何限制webhooks为Shopify的产品/更新webhook发送的字段?

当我创建webhook时,我可以发送如下字段,但是如何限制变体列表中的字段?

new_webhook = shopify.Webhook()
new_webhook.topic = 'product/update'
new_webhook.fields = ["id","title","variants","updated_at"]
new_webhook.save()

示例响应(带有上述字段)如下所示。我所关心的变种对象是'id','title','sku'和'updated_at'(即我不需要所有其他数据):

{
  "id": 327475578523353102,
  "title": "Example T-Shirt",
  "updated_at": null,
  "variants": [
    {
      "id": 1234567,
      "product_id": 327475578523353102,
      "title": "",
      "price": "19.99",
      "sku": "example-shirt-s",
      "position": 0,
      "grams": 200,
      "inventory_policy": "deny",
      "compare_at_price": "24.99",
      "fulfillment_service": "manual",
      "inventory_management": null,
      "option1": "Small",
      "option2": null,
      "option3": null,
      "created_at": null,
      "updated_at": null,
      "taxable": true,
      "barcode": null,
      "image_id": null,
      "inventory_quantity": 75,
      "weight": 0.44,
      "weight_unit": "lb",
      "old_inventory_quantity": 75,
      "requires_shipping": true
    },
    {
      "id": 1234568,
      "product_id": 327475578523353102,
      "title": "",
      "price": "19.99",
      "sku": "example-shirt-m",
      "position": 0,
      "grams": 200,
      "inventory_policy": "deny",
      "compare_at_price": "24.99",
      "fulfillment_service": "manual",
      "inventory_management": "shopify",
      "option1": "Medium",
      "option2": null,
      "option3": null,
      "created_at": null,
      "updated_at": null,
      "taxable": true,
      "barcode": null,
      "image_id": null,
      "inventory_quantity": 50,
      "weight": 0.44,
      "weight_unit": "lb",
      "old_inventory_quantity": 50,
      "requires_shipping": true
    }
  ]
}

1 个答案:

答案 0 :(得分:1)

当您要求提供产品数据时,不能限制返回的变体字段。