1

Woocommerce API を使用して商品の在庫を更新したいと考えています。製品 IDを照会し、次のコードを使用して、これを行うことができました。

curl -X PUT \
  https://www.kilikili.be/wp-json/wc/v3/products/10340 \
  -H ...
  -b ...
  -d '{
    "manage_stock": true,
    "stock_quantity": "1"
}'

ただし、今はskuを使用して同じことをしたいと思います。
私はこれを試しました:

curl -X PUT \
  'https://www.kilikili.be/wp-json/wc/v3/products?sku=test' \
  -H ...
  -b ...
  -d '{
    "manage_stock": true,
    "stock_quantity": "2"
}'

ただし、次の応答が返されます。

{
    "code": "rest_no_route",
    "message": "No route was found matching the URL and the request method",
    "data": {
        "status": 404
    }
}

これを達成する方法、またはそれが可能かどうかについてのアイデアはありますか?

4

1 に答える 1