Recapture potential sales with Invobot's abandoned cart reminders. Our system detects when a customer leaves items in their cart without checking out and sends them automated reminders via Whatsapp, increasing the chances of completing the sale. To set up abandoned cart reminders:
var axios = require('axios');
var data = JSON.stringify({
"country_code": +91,
"phone": 8888888888,
"link": "www.google.com",
"lang": "EN"
});
var config = {
method: 'post',
url: 'https://api.invobot.net/Integration/v1.0/abandoned/(Merchant_ID)',
headers: {
'accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': "Bearer API_KEY"
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});