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