提问者:小点点

商品属性是否在Shopify订单API中公开?


是否可以检索订单API中所有订单行项的自定义属性(请参阅此处http://wiki.shopify.com/Line_Item_Properties)?

我需要为所有订单创建自定义报告,但它们依赖于显示这些属性。


共1个答案

匿名用户

默认情况下,行项属性通过其存在的订单API公开。下面是一个行项XML片段示例,请注意底部的Monogram属性:

<line-items type="array">
  <line-item>
    <id type="integer">223039148</id>
    <requires-shipping type="boolean">true</requires-shipping>
    <fulfillment-service>manual</fulfillment-service>
    <grams type="integer">0</grams>
    <price type="decimal">9.99</price>
    <quantity type="integer">1</quantity>
    <sku/>
    <title>All the Tests</title>
    <product-id type="integer">90620559</product-id>
    <variant-id type="integer">212221205</variant-id>
    <vendor>soundcloud</vendor>
    <variant-title nil="true"/>
    <fulfillment-status nil="true"/>
    <name>All the Tests</name>
    <variant-inventory-management/>
    <properties type="array">
      <property>
        <name>Monogram</name>
        <value>omg</value>
      </property>
    </properties>
  </line-item>
</line-items>

请注意,如果属性数组为空,则它将不存在,因此请确保在代码中考虑到这一点。