const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({chat_id: '<string>'})
};
fetch('https://api.vambe.me/api/unipile/message/send', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));