const response = await fetch('https://base_url/chats/sendLocation', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"instance_key": "id",
"jid": "receivernumber",
"coordinates": {
"lat": 24.121231,
"long": 55.1121221
}
}),
});
const data = await response.json();