woocommerce api创建订单集订单项价格

时间:2019-02-14 08:30:15

标签: woocommerce woocommerce-rest-api

我正在尝试通过woocommerce API V3创建订单。我无法以自定义价格添加line_item的问题。有可能吗?

line_items:[ {
    product_id: 9344, 
    quantity: 1,
    subtotal: 10,
    total: 10 
  }]

当前我收到此错误:

    code: 'rest_invalid_param',
    message: 'Invalid parameter(s): line_items',

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。总价值附近必须有双引号。

line_items:[ {
    product_id: 9344, 
    total: "10"
  }]