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