我试图与Lightspeed电子商务平台进行一些自定义集成,我需要一种与add_to_cart / update_cart动作连接的方法,但我找不到连接到此事件的任何钩子。在Lightspeed中甚至可能吗?开发文档绝对没有关于添加到购物车/更新...任何提示?
答案 0 :(得分:1)
您可以通过创建引用/更新的网络挂钩来捕获此操作。当购物车更新时,带有所有必需信息的请求将发布到给定的URL。看一下此页面:https://developers.lightspeedhq.com/ecom/endpoints/quote/
答案 1 :(得分:0)
设置 webhook 的正确方法是发布:
https://api.yourshop.com/en/webhooks.json
{
"webhook": {
"isActive": true,
"itemGroup": "orders",
"itemAction": "*",
"language": "en",
"format": "json",
"address": "https://yourwebhook.com/"
}
}
请注意,字段 itemAction
有一个 *
女巫将接收操作 created|updated|deleted
更多信息在这里: https://developers.lightspeedhq.com/ecom/endpoints/webhook/#post-create-a-webhook