3

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

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

4

1 回答 1

6

默认情况下,订单项属性通过它们存在的 Order API 公开。这是一个示例行项目 XML 片段,请注意底部的“会标”属性:

<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>

请注意,如果属性数组为空,则该数组将不存在,因此请确保在代码中满足这一要求。

于 2012-08-24T13:37:52.383 回答