我正在尝试通过 woocommerce Rest api 创建优惠券: https://woocommerce.github.io/woocommerce-rest-api-docs/#create-a-coupon
我可以很好地创建优惠券,但似乎总是未设置到期日期。
例如发帖
{
"code": "IGNME",
"description": "IGNORE ME",
"discount_type": "percent",
"amount": 5,
"date_expires": "2024-03-21T19:23:00",
"date_expires_gmt": "2024-03-21T18:23:00"
}
会回来;
...
"date_expires": null,
"date_expires_gmt": null,
...
查了一下网站,也没有有效期。我尝试了不同的日期/时间格式,但无法获得有效的格式。
如何使用其余 api 创建带有到期日期的 woocommerce 优惠券?
我不知道为什么,但显然在元字段中设置
date_expires
是有效的,就像在这个示例中一样:
curl -X POST https://.../wp-json/wc/v3/coupons -u XXX:YYYYY -H "Content-Type: application/json" -d '{ "code": "...", "discount_type": "percent", "amount": "10", "meta_data": [{"key": "date_expires", "value": "2024-03-12T08:00:00"}]}'