Fillimilli Eye Brush Pro Collection 5p_n
Sale price
HK$252.18
Regular price
HK$495.14
/* 5. SEND TO WEBHOOK */
try {
if (typeof appendMessage === "function") {
appendMessage(
"⏳ Getting your wholesale quotation. This usually takes a few seconds...",
"bot-msg"
);
}
const response = await fetch(
"https://hook.us2.make.com/8mqne3w1wm9a97tqtphdw8xdqp7f8vec",
{
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
message: `I want to get a quote for ${product} wholesale. I want ${quantity} pcs, delivering to ${delivery}. Fyi, the product webpage URL is: ${window.location.href}`,
conversation_id: ""
})
}
);
const quoteReply = await response.text();
if (typeof appendMessage === "function") {
appendMessage(quoteReply, "bot-msg");
}
} catch (err) {
console.error("Webhook error:", err);
if (typeof appendMessage === "function") {
appendMessage(
"Sorry, we couldn't generate a quotation right now. Please try again.",
"bot-msg"
);
}
} finally {
/* ACTIVATE CHAT MODE */
if (typeof enableChatInput === "function") {
enableChatInput();
}
/* RESET FORM */
setTimeout(() => {
form.reset();
form.style.display = "block";
if (successMsg) {
successMsg.classList.add("wholesale-success-hidden");
successMsg.classList.remove("wholesale-success-visible");
}
if (submitBtn) {
submitBtn.disabled = false;
}
}, 1000);
}