const response = await fetch('https://base_url/groups/sendVideoUrl?id=id', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"instance_key": "id",
"jid": "groupid",
"videoUrl": "url",
"caption": "hello \n hi"
}),
});
const data = await response.json();