当程序尝试发布已经存在的货件时,BigCommerce 是否可以将其 API 响应更改为更清晰?
将货件过帐到 BigCommerce 时,如果货件已经存在,那么您会收到以下错误消息。
<?xml version="1.0"?>
<errors>
<error>
<status>400</status>
<message>The field 'quantity' is invalid.</message>
<details>
<invalid_reason>The quantity specified is greater than the quantity of the product that is available to ship.</invalid_reason>
<available_quantity>0</available_quantity>
<order_product_id>628</order_product_id>
</details>
</error>
</errors>
我同意这是一个糟糕的要求,但这与物品的数量无关。message
我们可以为or做类似以下的事情invalid_reason
吗?
The shipment [insert ID here] already exists and cannot be added.
这将使 API 更加可用。