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