const response = await fetch('https://base_url/groups/sendMessageText', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"instance_key": "id",
"jid": "groupid",
"message": "hello"
}),
});
const data = await response.json();