我在shopify上有一个测试店。创建订单后,我想通过PHP API调用将其履行状态更新为“已实现”。
到目前为止,文档中没有提及更新订单中订单项的履行状态。
有没有办法这样做?
答案 0 :(得分:2)
是。 API履行是可能的:http://api.shopify.com/fulfillment.html
答案 1 :(得分:0)
这就是我现在的工作方式
$data = array( "fulfillment" => array("tracking_number" => "1111111111"));
$data_string = json_encode($data);
$ch = curl_init('https://API:PASS@STORE.myshopify.com/admin/orders/ORDER_ID/fulfillments.json');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
print_r($result);